update readme
Browse filesupdate readme April 3, 2026
README.md
CHANGED
|
@@ -1,3 +1,154 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# MSDD: Maize Seedling Dataset for Stand Counting
|
| 2 |
+
|
| 3 |
+
## Overview
|
| 4 |
+
The MSDD (Maize Seedling Dataset) is designed for plant detection and stand counting tasks in agricultural environments.
|
| 5 |
+
It contains aerial imagery of maize genetic nurseries with annotations for early-stage seedling detection and classification.
|
| 6 |
+
|
| 7 |
+
The dataset is provided in YOLO format and supports training with modern object detection frameworks such as YOLOv9, YOLOv10, and YOLOv11/12.
|
| 8 |
+
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
## Directory Structure
|
| 12 |
+
|
| 13 |
+
```
|
| 14 |
+
yolo_format/
|
| 15 |
+
├── training/
|
| 16 |
+
│ ├── images/
|
| 17 |
+
│ └── labels/
|
| 18 |
+
├── validation/
|
| 19 |
+
│ ├── images/
|
| 20 |
+
│ └── labels/
|
| 21 |
+
├── test/
|
| 22 |
+
│ ├── images/
|
| 23 |
+
│ └── labels/
|
| 24 |
+
├── yolov9_data.yaml
|
| 25 |
+
├── yolov11-v12_data.yaml
|
| 26 |
+
└── README.md
|
| 27 |
+
```
|
| 28 |
+
|
| 29 |
+
### Description
|
| 30 |
+
|
| 31 |
+
- `training/images/` — training images
|
| 32 |
+
- `training/labels/` — YOLO annotations for training images
|
| 33 |
+
|
| 34 |
+
- `validation/images/` — validation images
|
| 35 |
+
- `validation/labels/` — YOLO annotations for validation images
|
| 36 |
+
|
| 37 |
+
- `test/images/` — test images
|
| 38 |
+
- `test/labels/` — YOLO annotations for test images
|
| 39 |
+
|
| 40 |
+
- `yolov9_data.yaml` — configuration file for YOLOv9 training
|
| 41 |
+
- `yolov11-v12_data.yaml` — configuration file for YOLOv11/YOLOv12 training
|
| 42 |
+
|
| 43 |
+
---
|
| 44 |
+
|
| 45 |
+
## Annotation Format
|
| 46 |
+
|
| 47 |
+
Annotations follow the standard YOLO format.
|
| 48 |
+
|
| 49 |
+
Each label file contains one object per line:
|
| 50 |
+
|
| 51 |
+
```
|
| 52 |
+
<class_id> <x_center> <y_center> <width> <height>
|
| 53 |
+
```
|
| 54 |
+
|
| 55 |
+
- Coordinates are normalized to the range `[0, 1]`
|
| 56 |
+
- Each `.txt` file corresponds to one image with the same filename
|
| 57 |
+
|
| 58 |
+
---
|
| 59 |
+
|
| 60 |
+
## Classes
|
| 61 |
+
|
| 62 |
+
| Class ID | Description |
|
| 63 |
+
|--------|------------|
|
| 64 |
+
| 0 | single |
|
| 65 |
+
| 1 | double |
|
| 66 |
+
| 2 | triple |
|
| 67 |
+
|
| 68 |
+
---
|
| 69 |
+
|
| 70 |
+
## Dataset Usage
|
| 71 |
+
|
| 72 |
+
### Example (YOLOv9)
|
| 73 |
+
|
| 74 |
+
```bash
|
| 75 |
+
yolo task=detect mode=train model=yolov9-c.pt data=yolov9_data.yaml
|
| 76 |
+
```
|
| 77 |
+
|
| 78 |
+
### Example (YOLOv11 / YOLOv12)
|
| 79 |
+
|
| 80 |
+
```bash
|
| 81 |
+
yolo task=detect mode=train model=yolo11.pt data=yolov11-v12_data.yaml
|
| 82 |
+
```
|
| 83 |
+
|
| 84 |
+
---
|
| 85 |
+
|
| 86 |
+
## YAML Configuration Files
|
| 87 |
+
|
| 88 |
+
### yolov9_data.yaml
|
| 89 |
+
```yaml
|
| 90 |
+
train: <path_to_dataset>/training/images
|
| 91 |
+
val: <path_to_dataset>/test/oblique/images
|
| 92 |
+
test: <path_to_dataset>//test/all/images
|
| 93 |
+
|
| 94 |
+
nc: 3
|
| 95 |
+
names:
|
| 96 |
+
0: Single
|
| 97 |
+
1: Double
|
| 98 |
+
2: Triple
|
| 99 |
+
```
|
| 100 |
+
|
| 101 |
+
### yolov11-v12_data.yaml
|
| 102 |
+
```yaml
|
| 103 |
+
path: <path_to_dataset>/
|
| 104 |
+
|
| 105 |
+
train: training/images
|
| 106 |
+
val: test/shadow/long/images
|
| 107 |
+
test: test/all/images
|
| 108 |
+
|
| 109 |
+
names:
|
| 110 |
+
0: Single
|
| 111 |
+
1: Double
|
| 112 |
+
2: Triple
|
| 113 |
+
```
|
| 114 |
+
|
| 115 |
+
---
|
| 116 |
+
|
| 117 |
+
## Citation
|
| 118 |
+
|
| 119 |
+
|
| 120 |
+
This dataset is associated with a manuscript under review and is currently available as a preprint.
|
| 121 |
+
|
| 122 |
+
If you use this dataset, please cite:
|
| 123 |
+
|
| 124 |
+
Dewi Endah Kharismawati and Toni Kazic.
|
| 125 |
+
*Maize Seedling Detection Dataset (MSDD): A Curated High-Resolution RGB Dataset for Seedling Maize Detection and Benchmarking with YOLOv9, YOLO11, YOLOv12 and Faster-RCNN*.
|
| 126 |
+
arXiv preprint arXiv:2509.15181, 2025.
|
| 127 |
+
DOI: 10.48550/arXiv.2509.15181
|
| 128 |
+
|
| 129 |
+
### BibTeX
|
| 130 |
+
|
| 131 |
+
```bibtex
|
| 132 |
+
@article{kharismawati2025msdd,
|
| 133 |
+
title={Maize Seedling Detection Dataset (MSDD): A Curated High-Resolution RGB Dataset for Seedling Maize Detection and Benchmarking with YOLOv9, YOLO11, YOLOv12 and Faster-RCNN},
|
| 134 |
+
author={Kharismawati, Dewi Endah and Kazic, Toni},
|
| 135 |
+
journal={arXiv preprint arXiv:2509.15181},
|
| 136 |
+
year={2025},
|
| 137 |
+
doi={10.48550/arXiv.2509.15181}
|
| 138 |
+
}
|
| 139 |
+
```
|
| 140 |
+
|
| 141 |
+
---
|
| 142 |
+
|
| 143 |
+
## License
|
| 144 |
+
|
| 145 |
+
Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)
|
| 146 |
+
|
| 147 |
+
https://creativecommons.org/licenses/by-nc-sa/4.0/
|
| 148 |
+
|
| 149 |
+
---
|
| 150 |
+
|
| 151 |
+
## Contact
|
| 152 |
+
|
| 153 |
+
Dewi Endah Kharismawati, Ph.D
|
| 154 |
+
kharismawati.2@osu.edu
|