MrigLabIITRopar commited on
Commit
d64b09c
·
verified ·
1 Parent(s): bc1a277

first commit

Browse files

readme file - full description of the dataset.

Files changed (1) hide show
  1. README.md +190 -0
README.md ADDED
@@ -0,0 +1,190 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - image-classification
5
+ - text-to-image
6
+ - image-to-text
7
+ language:
8
+ - en
9
+ tags:
10
+ - plant-growth
11
+ - phenotyping
12
+ - agriculture
13
+ - multiview
14
+ - time-series
15
+ - leaf-counting
16
+ - age-estimation
17
+ - precision-agriculture
18
+ pretty_name: GroMo 25 — Multiview Plant Growth Dataset
19
+ size_categories:
20
+ - 10K<n<100K
21
+ ---
22
+
23
+ # GroMo25: Multiview Time-Series Plant Image Dataset for Age Estimation and Leaf Counting
24
+
25
+ ## Dataset Summary
26
+
27
+ **GroMo25** is a multiview, time-series plant image dataset designed for plant age estimation (in days) and leaf counting tasks in precision agriculture. It contains high-quality images of four crop species — **Wheat, Okra, Radish, and Mustard** — captured over multiple days under controlled conditions. Each plant is photographed from 24 angles across 5 vertical levels per day, providing rich spatial and temporal information for plant growth modeling.
28
+
29
+ This dataset is intended for researchers and practitioners in **academic research, plant phenotyping, and agriculture**, and serves as the official dataset for the **GroMo Challenge**.
30
+
31
+ > **Paper:** [GroMo Challenge: Multiview time-series plant image dataset for age estimation and leaf counting in precision agriculture](https://doi.org/10.48550/arXiv.2503.06608)
32
+
33
+ ---
34
+
35
+ ## Dataset Structure
36
+
37
+ ### Crops Included
38
+
39
+ | Crop | Description |
40
+ |---------|-----------------------------------------|
41
+ | Wheat | Cereal crop, multiple growth stages |
42
+ | Okra | Vegetable crop, leaf-heavy growth |
43
+ | Radish | Root vegetable, rapid growth cycle |
44
+ | Mustard | Oilseed crop, distinct leaf pattern |
45
+
46
+ ### Image Capture Setup
47
+
48
+ All images were captured in a **controlled indoor environment**:
49
+ - Each plant is grown in a **pot** placed on a **rotating disk**
50
+ - The background is covered with a **white cloth** to ensure clean segmentation and consistent background
51
+ - Images are taken at **24 angles** per level (0° to 345°, 15° increment between consecutive angles)
52
+ - Each plant is photographed across **5 vertical levels** (L1 to L5) per day
53
+
54
+ ### Images Per Day (Per Plant)
55
+
56
+ ```
57
+ 5 levels × 24 angles = 120 images per plant per day
58
+ ```
59
+
60
+ ### Directory Structure
61
+
62
+ ```
63
+ dataset/
64
+ ├── train/
65
+ │ ├── p1/
66
+ │ │ ├── d1/
67
+ │ │ │ ├── L1/
68
+ │ │ │ │ ├── radish_p1_d1_L1_0.png
69
+ │ │ │ │ ├── radish_p1_d1_L1_15.png
70
+ │ │ │ │ ├── ...
71
+ │ │ │ │ └── radish_p1_d1_L1_345.png
72
+ │ │ │ ├── L2/
73
+ │ │ │ ├── L3/
74
+ │ │ │ ├── L4/
75
+ │ │ │ └── L5/
76
+ │ │ ├── d2/
77
+ │ │ └── ...
78
+ │ ├── p2/
79
+ │ ├── p3/
80
+ │ └── p4/
81
+ └── test/
82
+ └── (same structure as train)
83
+ ```
84
+
85
+ ### File Naming Convention
86
+
87
+ Each image follows the format:
88
+
89
+ ```
90
+ {crop}_p{X}_d{Y}_L{Z}_{A}.png
91
+ ```
92
+
93
+ | Field | Description |
94
+ |-------|-------------|
95
+ | `crop` | Crop name (e.g., `radish`, `wheat`) |
96
+ | `X` | Plant ID (e.g., `p1`, `p2`) |
97
+ | `Y` | Day number (e.g., `d1`, `d2`) |
98
+ | `Z` | Level (L1 to L5) |
99
+ | `A` | Angle in degrees (0 to 345, step 15) |
100
+
101
+ **Example:** `radish_p1_d3_L2_90.png` → Radish, Plant 1, Day 3, Level 2, angle 90°
102
+
103
+ ---
104
+
105
+ ## Ground Truth / Annotations
106
+
107
+ Each crop has a corresponding `{crop}_train.csv` file containing per-image labels.
108
+
109
+ ### Format
110
+
111
+ | Column | Description |
112
+ |--------|-------------|
113
+ | `filename` | Relative path to the image |
114
+ | `leaf_count` | Number of leaves on the plant |
115
+ | `Age` | Age of the plant in days |
116
+
117
+ ### Example
118
+ ```csv
119
+ filename,leaf_count,Age
120
+ mustard/p1/d1/L1/mustard_p1_d1_L1_0.png,2,1
121
+ ```
122
+
123
+ A separate CSV is provided for each crop covering all plants, days, levels, and angles.
124
+
125
+ ---
126
+
127
+ ## Tasks
128
+
129
+ This dataset supports the following tasks:
130
+
131
+ - **Plant Age Estimation** — Predict the number of days since planting (regression)
132
+ - **Leaf Counting** — Predict the number of leaves visible on the plant (regression)
133
+
134
+ ### Evaluation Metrics
135
+
136
+ | Metric | Description |
137
+ |--------|-------------|
138
+ | RMSE | Root Mean Squared Error |
139
+ | MAE | Mean Absolute Error |
140
+
141
+ ---
142
+
143
+ ## Citation
144
+
145
+ If you use this dataset in your research, please cite:
146
+
147
+ ```bibtex
148
+ @inproceedings{10.1145/3746027.3762097,
149
+ author = {Bansal, Shreya and Bhatt, Ruchi and Chander, Amanpreet and Kaur, Rupinder and Singh, Malya and Kankanhalli, Mohan and El Saddik, Abdulmotaleb and Saini, Mukesh},
150
+ title = {GroMo25: ACM Multimedia 2025 Grand Challenge for Plant Growth Modeling with Multiview Images},
151
+ year = {2025},
152
+ isbn = {9798400720352},
153
+ publisher = {Association for Computing Machinery},
154
+ address = {New York, NY, USA},
155
+ url = {https://doi.org/10.1145/3746027.3762097},
156
+ doi = {10.1145/3746027.3762097},
157
+ abstract = {Understanding plant growth dynamics is a critical component of modern agricultural research, with applications in yield prediction, phenotyping, and sustainable crop management. Despite recent advances in computer vision and deep learning, progress in plant growth modeling has been constrained by the lack of publicly available, high-resolution, multiview, and temporally rich datasets. To address this gap, we introduce Growth Modelling GroMo25, the first international challenge on plant growth modeling using multiview imagery. In this challenge, we propose a dataset that comprises high-resolution images of four crops: wheat, mustard, radish, and okra, captured at consistent time intervals from multiple camera viewpoints under controlled environmental conditions. The challenge focuses on two key tasks: (1) plant age prediction and (2) leaf count estimation, both requiring models to use spatial and temporal plant features. GroMo25 attracted participation from multiple teams worldwide, encouraging benchmarking and innovation in vision-based plant phenotyping. The GitHub repository is publicly available at https://github.com/mriglab/GroMo-Plant-Growth-Modeling-with-Multiview-Images.},
158
+ booktitle = {Proceedings of the 33rd ACM International Conference on Multimedia},
159
+ pages = {14204–14209},
160
+ numpages = {6},
161
+ keywords = {growth age prediction, leaf count estimation, multiview},
162
+ location = {Dublin, Ireland},
163
+ series = {MM '25}
164
+ }
165
+ ```
166
+
167
+ ---
168
+
169
+ ## Authors & Affiliations
170
+
171
+ | Name | Institution |
172
+ |------|------------|
173
+ | Shreya Bansal | IIT Ropar |
174
+ | Ruchi Bhatt | IIT Ropar |
175
+ | Amanpreet Chander | IIT Ropar |
176
+ | Rupinder Kaur | IIT Ropar |
177
+ | Malya Singh | IIT Ropar |
178
+ | Dr. Mohan Kankanhalli | National University of Singapore |
179
+ | Abdulmotaleb El Saddik | University of Ottawa |
180
+ | Mukesh Kumar Saini | IIT Ropar |
181
+
182
+ For queries, contact: **mrig@iitrpr.ac.in**
183
+
184
+ ---
185
+
186
+ ## License
187
+
188
+ This dataset is released under the [Creative Commons Attribution 4.0 International (CC BY 4.0)](https://creativecommons.org/licenses/by/4.0/) license.
189
+
190
+ You are free to use, share, and adapt this dataset for any purpose, including commercial use, as long as appropriate credit is given to the authors.