Improve dataset card: Add paper link, license, sample usage, update citation

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +43 -23
README.md CHANGED
@@ -1,42 +1,44 @@
1
  ---
2
- task_categories:
3
- - image-to-image
4
- - image-feature-extraction
5
- - object-detection
6
  language:
7
  - en
 
 
 
 
 
8
  tags:
9
  - plant
10
  - precision agriculture
11
  - plant phenotyping
12
  - tracking
13
- size_categories:
14
- - 10B<n<100B
15
- pretty_name: CanolaTrack
16
  ---
17
 
18
  # CanolaTrack
19
 
20
- **CanolaTrack** is a curated dataset for **leaf-level multi-object tracking (MOT)** and **detection** from top-down RGB imagery of *Brassica napus* (canola) plants. Each sequence records a single plant over time; frames contain annotated **bounding boxes** with **persistent leaf IDs** for tracking.
21
 
22
- - For baseline methods and a reference pipeline built on CanolaTrack, see **LeafTrackNet** (training, inference, and TrackEval integration) in our [Github repo](https://github.com/shl-shawn/LeafTrackNet).
 
 
 
23
 
24
  ---
25
 
26
  ## Dataset Summary
27
 
28
- - **Domain:** Plant phenotyping (leaf-level analysis, time series)
29
- - **Modalities:** RGB images (top-down)
30
- - **Use cases:** Multi-object tracking (leaf IDs), detection, re-identification
31
- - **Content:** Sequences of a single plant over days; each frame has MOT-style annotations
32
- - **Annotations:** `gt/gt.txt` per sequence with **frame**, **leaf_id**, **x**, **y**, **w**, **h** (pixels)
33
- - **Extras:** YOLOv10 **proposals JSONs** and **LeafTrackNet model weights**for reproducible tracking baselines
34
 
35
  ---
36
 
37
  ## Repository Structure
38
  ```
39
- CanolaTrack/
40
  │ ├── train/
41
  │ │ └── <plant_id>/
42
  │ │ ├── gt/gt.txt # CSV: frame,id,x,y,w,h,,,*
@@ -54,12 +56,31 @@ weights/ # detctors and tracker weights
54
 
55
  ## Supported Tasks and Benchmarks
56
 
57
- - **Multi-Object Tracking (MOT)** at the **leaf** level
58
- - **Object Detection** (per-frame leaf boxes)
59
- - **Leaf Segmentation** (per-frame leaf masks)
60
 
61
  ---
62
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
63
  ## How to Cite
64
  Please cite the dataset and the accompanying papers:
65
 
@@ -67,10 +88,9 @@ Please cite the dataset and the accompanying papers:
67
  @article{leaftracknet2025,
68
  title={LeafTrackNet: A Deep Learning Framework for Robust Leaf Tracking in Top-Down Plant Phenotyping},
69
  year={2025},
70
- author = {},
71
- url = {}
72
  }
73
  ```
74
 
75
- > CanolaTrack dataset© BASF SE 2025. This dataset may be freely used for non-commercial research and educational purposes.
76
-
 
1
  ---
 
 
 
 
2
  language:
3
  - en
4
+ size_categories:
5
+ - 10B<n<100B
6
+ task_categories:
7
+ - object-detection
8
+ pretty_name: CanolaTrack
9
  tags:
10
  - plant
11
  - precision agriculture
12
  - plant phenotyping
13
  - tracking
14
+ license: other
 
 
15
  ---
16
 
17
  # CanolaTrack
18
 
19
+ **CanolaTrack** is a curated dataset for **leaf-level multi-object tracking (MOT)** and **detection** from top-down RGB imagery of *Brassica napus* (canola) plants. Each sequence records a single plant over time; frames contain annotated **bounding boxes** with **persistent leaf IDs** for tracking.
20
 
21
+ Paper: [LeafTrackNet: A Deep Learning Framework for Robust Leaf Tracking in Top-Down Plant Phenotyping](https://huggingface.co/papers/2512.13130)
22
+ Code: [https://github.com/shl-shawn/LeafTrackNet](https://github.com/shl-shawn/LeafTrackNet)
23
+
24
+ For baseline methods and a reference pipeline built on CanolaTrack, see **LeafTrackNet** (training, inference, and TrackEval integration) in our [Github repo](https://github.com/shl-shawn/LeafTrackNet).
25
 
26
  ---
27
 
28
  ## Dataset Summary
29
 
30
+ - **Domain:** Plant phenotyping (leaf-level analysis, time series)
31
+ - **Modalities:** RGB images (top-down)
32
+ - **Use cases:** Multi-object tracking (leaf IDs), detection, re-identification
33
+ - **Content:** Sequences of a single plant over days; each frame has MOT-style annotations
34
+ - **Annotations:** `gt/gt.txt` per sequence with **frame**, **leaf_id**, **x**, **y**, **w**, **h** (pixels)
35
+ - **Extras:** YOLOv10 **proposals JSONs** and **LeafTrackNet model weights**for reproducible tracking baselines
36
 
37
  ---
38
 
39
  ## Repository Structure
40
  ```
41
+ CanolaTrack/
42
  │ ├── train/
43
  │ │ └── <plant_id>/
44
  │ │ ├── gt/gt.txt # CSV: frame,id,x,y,w,h,,,*
 
56
 
57
  ## Supported Tasks and Benchmarks
58
 
59
+ - **Multi-Object Tracking (MOT)** at the **leaf** level
60
+ - **Object Detection** (per-frame leaf boxes)
61
+ - **Leaf Segmentation** (per-frame leaf masks)
62
 
63
  ---
64
 
65
+ ## Sample Usage
66
+
67
+ The trained LeafTrackNet model weights can be downloaded from the [link](https://huggingface.co/datasets/shl-shawn/CanolaTrack/tree/main/weights).
68
+ You can run inference/tracking on the CanolaTrack test set using the following command:
69
+
70
+ ```bash
71
+ python infer.py --checkpoint_path {TRAINED_WEIGHT} \
72
+ --config configs/default.yaml \
73
+ --proposals_json data/proposals/det_db_val.json \
74
+ --image_root data/val \
75
+ --output_dir outputs/leaf_reid \
76
+ --threshold 0.4 --update_mode mean
77
+ ```
78
+
79
+ Output MOT files appear in `outputs/leaf_reid/tracks/{plant}.txt` with lines:
80
+ ```
81
+ frame, id, bb_left, bb_top, bb_width, bb_height, sim, -1, -1, -1
82
+ ```
83
+
84
  ## How to Cite
85
  Please cite the dataset and the accompanying papers:
86
 
 
88
  @article{leaftracknet2025,
89
  title={LeafTrackNet: A Deep Learning Framework for Robust Leaf Tracking in Top-Down Plant Phenotyping},
90
  year={2025},
91
+ author = {}, # Authors are not specified in paper info
92
+ url = {https://huggingface.co/papers/2512.13130}
93
  }
94
  ```
95
 
96
+ > CanolaTrack dataset© BASF SE 2025. This dataset may be freely used for non-commercial research and educational purposes.