Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,40 @@
|
|
| 1 |
---
|
| 2 |
-
license:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
license: mit
|
| 3 |
+
tags:
|
| 4 |
+
- object-detection
|
| 5 |
+
- computer-vision
|
| 6 |
+
- sort
|
| 7 |
+
- tracker
|
| 8 |
+
- ocsort
|
| 9 |
---
|
| 10 |
+
|
| 11 |
+
### Model Description
|
| 12 |
+
[Sort](https://arxiv.org/abs/1602.00763): A simple online and realtime tracking algorithm for 2D multiple object tracking in video sequences<img src="https://raw.githubusercontent.com/noahcao/OC_SORT/master/assets/teaser.png" width="600"/>
|
| 13 |
+
|
| 14 |
+
### Installation
|
| 15 |
+
```
|
| 16 |
+
pip install sort-track
|
| 17 |
+
```
|
| 18 |
+
|
| 19 |
+
### Tracker
|
| 20 |
+
```python
|
| 21 |
+
from sort.tracker import SortTracker
|
| 22 |
+
|
| 23 |
+
tracker = SortTracker(args)
|
| 24 |
+
for image in images:
|
| 25 |
+
dets = detector(image)
|
| 26 |
+
online_targets = tracker.update(dets)
|
| 27 |
+
```
|
| 28 |
+
|
| 29 |
+
### BibTeX Entry and Citation Info
|
| 30 |
+
```
|
| 31 |
+
@inproceedings{Bewley2016_sort,
|
| 32 |
+
author={Bewley, Alex and Ge, Zongyuan and Ott, Lionel and Ramos, Fabio and Upcroft, Ben},
|
| 33 |
+
booktitle={2016 IEEE International Conference on Image Processing (ICIP)},
|
| 34 |
+
title={Simple online and realtime tracking},
|
| 35 |
+
year={2016},
|
| 36 |
+
pages={3464-3468},
|
| 37 |
+
keywords={Benchmark testing;Complexity theory;Detectors;Kalman filters;Target tracking;Visualization;Computer Vision;Data Association;Detection;Multiple Object Tracking},
|
| 38 |
+
doi={10.1109/ICIP.2016.7533003}
|
| 39 |
+
}
|
| 40 |
+
```
|