Hamidreza commited on
Commit
7e16fad
·
1 Parent(s): da60250

2026.3.1.21.56

Browse files
Files changed (1) hide show
  1. README.md +37 -8
README.md CHANGED
@@ -16,6 +16,14 @@ size_categories:
16
  ### A new benchmark dataset comprising diverse vehicle classes with frame-level tracking annotation introduced in paper: *FastTracker: Real-Time and Accurate Visual Tracking*
17
  _[Hamidreza Hashempoor](https://hamidreza-hashempoor.github.io/), Yu Dong Hwang_.
18
 
 
 
 
 
 
 
 
 
19
  ## Resources
20
  | Github | Paper |
21
  |:-----------------:|:-------:|
@@ -71,20 +79,41 @@ Brief statistics and visualization of FastTracker benchmark and its comparison w
71
 
72
  ### Data Format
73
 
74
- GT format is like (each line):
75
- `frame, id, bb_left, bb_top, bb_width, bb_height, conf, class, 1.0`.
 
 
 
 
 
76
 
77
- To prepare the dataset, first run `extract_frames.py` to decode frames from each video.
78
- In **line 11** of the script, add the video filename and the number of frames you want to extract.
79
  ```bash
80
- python extract_frames.py
 
 
 
 
81
  ```
82
 
83
- Then, convert the ground truth into COCO format with:
 
 
 
 
 
84
  ```bash
85
- python convert_to_coco.py
 
 
 
 
 
 
 
86
  ```
87
- This will generate annotations/train.json ready for training your detector.
88
 
89
 
90
 
 
16
  ### A new benchmark dataset comprising diverse vehicle classes with frame-level tracking annotation introduced in paper: *FastTracker: Real-Time and Accurate Visual Tracking*
17
  _[Hamidreza Hashempoor](https://hamidreza-hashempoor.github.io/), Yu Dong Hwang_.
18
 
19
+
20
+ ## Updates
21
+
22
+ | Date | Update |
23
+ |------|---------|
24
+ | **2026-03-01** | Speciall thanks to _[Mikhail Kozak](https://huggingface.co/datasets/Fleyderer/FastTracker-Benchmark-MOT) which helped to prepare the revised current version of the benchmark.|
25
+
26
+
27
  ## Resources
28
  | Github | Paper |
29
  |:-----------------:|:-------:|
 
79
 
80
  ### Data Format
81
 
82
+ Each sequence is provided as a compressed archive inside the train/ directory:
83
+ ```bash
84
+ train/
85
+ task_day_left_turn.zip
86
+ task_day_occlusion.zip
87
+ ...
88
+ ```
89
 
90
+
91
+ After extracting a sequence archive, the structure is:
92
  ```bash
93
+ task_xxx/
94
+ img1/ # extracted frames (.jpg)
95
+ gt/ # MOT-format ground truth (gt.txt)
96
+ video/ # reconstructed video (.mp4) and metadata
97
+ seqinfo.ini # sequence metadata
98
  ```
99
 
100
+
101
+
102
+ GT formats `gt/gt.txt` is like (each line):
103
+ `frame, id, bb_left, bb_top, bb_width, bb_height, conf, class, visibility`.
104
+
105
+ Each sequence includes `seqinfo.ini`:
106
  ```bash
107
+ [Sequence]
108
+ name=task_day_left_turn
109
+ imDir=img1
110
+ frameRate=30
111
+ seqLength=1962
112
+ imWidth=1920
113
+ imHeight=1080
114
+ imExt=.jpg
115
  ```
116
+
117
 
118
 
119