Datasets:
Tasks:
Object Detection
Languages:
English
Size:
100K<n<1M
ArXiv:
Tags:
Multi-object-tracking
License:
Hamidreza commited on
Commit ·
7e16fad
1
Parent(s): da60250
2026.3.1.21.56
Browse files
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 |
-
|
| 75 |
-
`
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 76 |
|
| 77 |
-
|
| 78 |
-
|
| 79 |
```bash
|
| 80 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 81 |
```
|
| 82 |
|
| 83 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 84 |
```bash
|
| 85 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 86 |
```
|
| 87 |
-
|
| 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 |
|