File size: 951 Bytes
9491f45 aee8b0b 9491f45 aee8b0b c17d4e5 aee8b0b |
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 |
---
license: mit
tags:
- object-detection
- computer-vision
- sort
- tracker
- bytetracker
---
### Model Description
[ByteTrack](https://arxiv.org/abs/2110.06864): Multi-Object Tracking by Associating Every Detection Box
<img src="https://raw.githubusercontent.com/ifzhang/ByteTrack/main/assets/sota.png" width="500"/>
### Installation
```
pip install bytetracker
```
### Tracker
```python
from bytetracker import BYTETracker
tracker = BYTETracker(args)
for image in images:
dets = detector(image)
online_targets = tracker.update(dets)
```
### BibTeX Entry and Citation Info
```
@article{zhang2022bytetrack,
title={ByteTrack: Multi-Object Tracking by Associating Every Detection Box},
author={Zhang, Yifu and Sun, Peize and Jiang, Yi and Yu, Dongdong and Weng, Fucheng and Yuan, Zehuan and Luo, Ping and Liu, Wenyu and Wang, Xinggang},
booktitle={Proceedings of the European Conference on Computer Vision (ECCV)},
year={2022}
}
``` |