An open API service indexing awesome lists of open source software.

https://github.com/kadirnar/bytetrack-pip

Packaged version of the ByteTrack repository
https://github.com/kadirnar/bytetrack-pip

bytetrack object-detection object-tracking tracker yolov5

Last synced: about 1 year ago
JSON representation

Packaged version of the ByteTrack repository

Awesome Lists containing this project

README

          



ByteTrack-Pip: Packaged version of the ByteTrack repository



teaser



downloads
pypi version

##

Overview

This repo is a packaged version of the [ByteTrack](https://github.com/ifzhang/ByteTrack) algorithm.
### Installation
```
pip install bytetracker
```

### Detection Model + ByteTrack
```python
from bytetracker import BYTETracker

tracker = BYTETracker(args)
for image in images:
dets = detector(image)
online_targets = tracker.update(dets)
```
### Reference:
- [Yolov5-Pip](https://github.com/fcakyon/yolov5-pip)
- [ByteTrack](https://github.com/ifzhang/ByteTrack)

### Citation
```bibtex
@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}
}
```