KevynAngueira commited on
Commit
ae0924e
·
verified ·
1 Parent(s): fcb95a0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +87 -1
README.md CHANGED
@@ -18,4 +18,90 @@ tags:
18
  pretty_name: 'LeafScan: Corn Leaf Defoliation'
19
  size_categories:
20
  - 1K<n<10K
21
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  pretty_name: 'LeafScan: Corn Leaf Defoliation'
19
  size_categories:
20
  - 1K<n<10K
21
+ ---
22
+
23
+ # # LeafScan-CornDefoliation2025-V1.0 Dataset
24
+
25
+ A multi-level dataset for corn leaf defoliation assessments research. Provides corn leaves processed in both video and image form. Paired to the LeafScan research project at https://github.com/KevynAngueira/LeafScan.
26
+
27
+ - **Fields:** 7 sampled sites across 3 states (IA, IN, OH)
28
+ - **Plants:** 18 total plants
29
+ - **Leaves:** 149 leaves total, with leaf number 7-21
30
+ - **Media:** 1000+ videos & images across healthy, defoliated, and simulated conditions
31
+
32
+ Zenodo: 10.5281/zenodo.17289901
33
+ Github: https://github.com/KevynAngueira/LeafScan
34
+ Author: Kevyn Angueira Irizarry
35
+
36
+ ### Folder Structure
37
+
38
+ <pre>
39
+ dataset/
40
+ ├── LeafScan/
41
+ │ ├── healthy/
42
+ │ │ ├── raw_videos/
43
+ │ │ └── segmented_videos/
44
+ │ └── defoliated/
45
+ │ ├── raw_videos/
46
+ │ └── segmented_videos/
47
+ └── Board/
48
+ ├── healthy/
49
+ │ ├── raw_images/
50
+ │ └── segmented_images/
51
+ └── simulated/
52
+ ├── raw_images/
53
+ └── segmented_images/
54
+ </pre>
55
+
56
+ ### Metadata Structure
57
+
58
+ # field.json:
59
+
60
+ <pre>
61
+ field_[fid]
62
+ └── field_description
63
+ ├── storm
64
+ │ ├── growth_stage
65
+ │ └── date
66
+ ├── collection
67
+ │ ├── growth_stage
68
+ │ └── date
69
+ ├── location
70
+ │ ├── state
71
+ │ └──county
72
+ └── notes
73
+ </pre>
74
+
75
+ # plant.json
76
+
77
+ <pre>
78
+ field_[fid]
79
+ └── plant_[pid]
80
+ └── plant_description
81
+ ├── growth_stage
82
+ └── notes
83
+ </pre>
84
+
85
+ # leaves.json
86
+
87
+ <pre>
88
+ field_[fid]
89
+ └── plant_[pid]
90
+ └── leaf_[lid]
91
+ ├── leaf_description
92
+ │ ├── status
93
+ │ ├── leaf_number
94
+ │ ├── defoliation
95
+ │ └── notes
96
+ └── measurements
97
+ ├── area
98
+ │ ├── original
99
+ │ └── simulated
100
+ ├── max_length
101
+ │ ├── original
102
+ │ └── simulated
103
+ ├── max_width
104
+ │ ├── original
105
+ │ └── simulated
106
+ └── widths
107
+ </pre>