Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,38 @@
|
|
1 |
---
|
2 |
license: mit
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: mit
|
3 |
+
tags:
|
4 |
+
- object-detection
|
5 |
+
- computer-vision
|
6 |
+
- sort
|
7 |
+
- tracker
|
8 |
+
- bytetracker
|
9 |
---
|
10 |
+
|
11 |
+
### Model Description
|
12 |
+
[ByteTrack](https://arxiv.org/abs/2203.14360): Multi-Object Tracking by Associating Every Detection Box
|
13 |
+
<img src="https://raw.githubusercontent.com/ifzhang/ByteTrack/main/assets/sota.png" width="500"/>
|
14 |
+
|
15 |
+
### Installation
|
16 |
+
```
|
17 |
+
pip install bytetracker
|
18 |
+
```
|
19 |
+
|
20 |
+
### Tracker
|
21 |
+
```python
|
22 |
+
from bytetracker import BYTETracker
|
23 |
+
|
24 |
+
tracker = BYTETracker(args)
|
25 |
+
for image in images:
|
26 |
+
dets = detector(image)
|
27 |
+
online_targets = tracker.update(dets)
|
28 |
+
```
|
29 |
+
|
30 |
+
### BibTeX Entry and Citation Info
|
31 |
+
```
|
32 |
+
@article{zhang2022bytetrack,
|
33 |
+
title={ByteTrack: Multi-Object Tracking by Associating Every Detection Box},
|
34 |
+
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},
|
35 |
+
booktitle={Proceedings of the European Conference on Computer Vision (ECCV)},
|
36 |
+
year={2022}
|
37 |
+
}
|
38 |
+
```
|