Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,111 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: cc-by-4.0
|
| 3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
---
|
| 4 |
+
# STAFDD Dataset
|
| 5 |
+
|
| 6 |
+
## Overview
|
| 7 |
+
The **STAFDD Dataset** is a fish disease detection dataset designed for training and evaluating deep learning models under aquaculture scenarios.
|
| 8 |
+
It supports **object detection**, **spatio-temporal analysis**, and **video-based disease assessment**, and is used in the paper:
|
| 9 |
+
|
| 10 |
+
> **STAFDD: A Spatio-Temporal Automatic Fish Disease Detection Method**
|
| 11 |
+
|
| 12 |
+
The dataset is organized in **YOLO format** and includes:
|
| 13 |
+
- Annotated images for YOLO-based training
|
| 14 |
+
- Pretrained `.pt` model weights
|
| 15 |
+
- Raw test videos for inference and evaluation
|
| 16 |
+
|
| 17 |
+
---
|
| 18 |
+
|
| 19 |
+
## Dataset Structure
|
| 20 |
+
The dataset is organized as follows:
|
| 21 |
+
|
| 22 |
+
STAFDD-dataset/
|
| 23 |
+
├── images/
|
| 24 |
+
│ ├── train/
|
| 25 |
+
│ ├── val/
|
| 26 |
+
│ └── test/
|
| 27 |
+
├── labels/
|
| 28 |
+
│ ├── train/
|
| 29 |
+
│ ├── val/
|
| 30 |
+
│ └── test/
|
| 31 |
+
├── videos/
|
| 32 |
+
│ └── test_videos/
|
| 33 |
+
├── models/
|
| 34 |
+
│ └── ReID.pt
|
| 35 |
+
├── data.yaml
|
| 36 |
+
└── README.md
|
| 37 |
+
|
| 38 |
+
|
| 39 |
+
- `images/`: RGB images extracted from aquaculture videos
|
| 40 |
+
- `labels/`: YOLO-format annotations (`.txt`)
|
| 41 |
+
- `videos/`: Raw test videos used for model evaluation
|
| 42 |
+
- `models/`: Pretrained model weights (`.pt`)
|
| 43 |
+
- `data.yaml`: YOLO training configuration file
|
| 44 |
+
|
| 45 |
+
---
|
| 46 |
+
|
| 47 |
+
## Annotation Format
|
| 48 |
+
Annotations follow the **YOLO object detection format**:
|
| 49 |
+
|
| 50 |
+
<class_id> <x_center> <y_center> <width> <height>
|
| 51 |
+
|
| 52 |
+
|
| 53 |
+
- Coordinates are normalized to `[0, 1]`
|
| 54 |
+
- One annotation file per image
|
| 55 |
+
- Bounding boxes correspond to visible disease-related regions on fish bodies
|
| 56 |
+
|
| 57 |
+
---
|
| 58 |
+
|
| 59 |
+
## Classes
|
| 60 |
+
The dataset focuses on **fish disease-related visual symptoms**.
|
| 61 |
+
Class definitions are consistent with those described in the associated paper.
|
| 62 |
+
|
| 63 |
+
> ⚠️ Note: Class semantics should be interpreted together with the experimental section of the paper.
|
| 64 |
+
|
| 65 |
+
---
|
| 66 |
+
|
| 67 |
+
## Data Splits
|
| 68 |
+
The dataset is divided into three subsets:
|
| 69 |
+
|
| 70 |
+
- **Training set**
|
| 71 |
+
- **Validation set**
|
| 72 |
+
- **Test set**
|
| 73 |
+
|
| 74 |
+
To reduce data leakage, frame sampling and dataset splitting are performed with temporal consistency considerations, avoiding random shuffling of adjacent video frames.
|
| 75 |
+
|
| 76 |
+
---
|
| 77 |
+
|
| 78 |
+
## Intended Use
|
| 79 |
+
This dataset is intended for:
|
| 80 |
+
- Fish disease detection
|
| 81 |
+
- Small object detection in aquaculture environments
|
| 82 |
+
- Video-based disease analysis
|
| 83 |
+
- Research on spatio-temporal fish health monitoring
|
| 84 |
+
|
| 85 |
+
It is suitable for training YOLO-based detectors and evaluating models on real-world aquaculture videos.
|
| 86 |
+
|
| 87 |
+
---
|
| 88 |
+
|
| 89 |
+
## License
|
| 90 |
+
This dataset is released under the **CC BY 4.0** license.
|
| 91 |
+
|
| 92 |
+
---
|
| 93 |
+
|
| 94 |
+
## Citation
|
| 95 |
+
If you use this dataset, please cite the following paper:
|
| 96 |
+
|
| 97 |
+
```bibtex
|
| 98 |
+
@article{wang2024stafdd,
|
| 99 |
+
title={STAFDD: A Spatio-Temporal Automatic Fish Disease Detection Method},
|
| 100 |
+
author={Wang, Bo and others},
|
| 101 |
+
journal={},
|
| 102 |
+
year={2024}
|
| 103 |
+
}
|
| 104 |
+
|
| 105 |
+
|
| 106 |
+
Contact
|
| 107 |
+
|
| 108 |
+
For questions or collaborations, please contact:
|
| 109 |
+
|
| 110 |
+
Bo Wang
|
| 111 |
+
Email: 3020201781@jsnu.edu
|