Datasets:
Tasks:
Object Detection
Languages:
English
Size:
100K<n<1M
ArXiv:
Tags:
Multi-object-tracking
License:
File size: 4,407 Bytes
722c81c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 | ---
license: bigscience-openrail-m
task_categories:
- object-detection
language:
- en
tags:
- Multi-object-tracking
pretty_name: FastTracker-Benchmark
size_categories:
- 100K<n<1M
---
# FastTracker Benchmark
### A new benchmark dataset comprising diverse vehicle classes with frame-level tracking annotation introduced in paper: *FastTracker: Real-Time and Accurate Visual Tracking*
_[Hamidreza Hashempoor](https://hamidreza-hashempoor.github.io/), Yu Dong Hwang_.
## Updates
| Date | Update |
|------|---------|
| **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.|
## Resources
| Github | Paper |
|:-----------------:|:-------:|
|[](https://github.com/Hamidreza-Hashempoor/FastTracker)|[](https://arxiv.org/abs/2508.14370)
<div align="center">
<img src="./fig/fasttrack_benchmark.jpg" width="40%" alt="MiroThinker" />
</div>
----
## Dataset Overview
Brief statistics and visualization of FastTracker benchmark and its comparison with other benchmarks.
| Attribute | UrbanTracker | CityFlow | FastTracker |
|----------------|--------------|----------|-----------|
| **Year** | 2014 | 2022 | 2025 |
| **Detections** | 12.5K | 890K | 800K |
| **#Videos** | 5 | 40 | 12 |
| **Obj/Frame** | 5.4 | 8.2 | 43.5 |
| **#Classes** | 3 | 1 | 9 |
| **#Scenarios** | 1 | 4 | 12 |
---
## Dataset Summary
- **What is it?**
FastTrack is a large-scale benchmark dataset for evaluating multi-object tracking in complex and high-density traffic environments. It includes 800K annotated object detections across 12 videos, with an average of 43.5 objects per frame. The dataset features 9 traffic-related classes and covers diverse real-world traffic scenarios—such as multilane intersections, tunnels, crosswalks, and merging roads—captured under varying lighting conditions (daytime, nighttime, shadows).
- **Why was it created?**
FastTrack was created to address limitations of existing benchmarks like UrbanTracker and CityFlow, which lack diversity in scene types and have lower object density. This benchmark introduces challenging conditions including extreme crowding, long-term occlusions, and diverse motion patterns, to push the boundaries of modern multi-object tracking algorithms—particularly those optimized for real-world, urban traffic settings.
- **What can it be used for?**
Multi-object tracking, re-identification, online tracking evaluation, urban scene understanding, and benchmarking tracking algorithms under occlusion and crowding.
- **Who are the intended users?**
Researchers and practitioners in computer vision and intelligent transportation systems, especially those focusing on real-time tracking, urban mobility, autonomous driving, and edge deployment. Also valuable for students and developers working on lightweight or environment-aware tracking models.
---
## Dataset Structure
### Data Format
Each sequence is provided as a compressed archive inside the train/ directory:
```bash
train/
task_day_left_turn.zip
task_day_occlusion.zip
...
```
After extracting a sequence archive, the structure is:
```bash
task_xxx/
img1/ # extracted frames (.jpg)
gt/ # MOT-format ground truth (gt.txt)
video/ # reconstructed video (.mp4) and metadata
seqinfo.ini # sequence metadata
```
GT formats `gt/gt.txt` is like (each line):
`frame, id, bb_left, bb_top, bb_width, bb_height, conf, class, visibility`.
Each sequence includes `seqinfo.ini`:
```bash
[Sequence]
name=task_day_left_turn
imDir=img1
frameRate=30
seqLength=1962
imWidth=1920
imHeight=1080
imExt=.jpg
```
## Citation
If you use our code or Benchmark, please cite our work.
```
@misc{hashempoor2025fasttrackerrealtimeaccuratevisual,
title={FastTracker: Real-Time and Accurate Visual Tracking},
author={Hamidreza Hashempoor and Yu Dong Hwang},
year={2025},
eprint={2508.14370},
archivePrefix={arXiv},
primaryClass={cs.CV},
url={https://arxiv.org/abs/2508.14370},
}
``` |