kadirnar commited on
Commit
cc20bb1
·
1 Parent(s): 1ce1d22

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +33 -0
README.md CHANGED
@@ -1,3 +1,36 @@
1
  ---
2
  license: mit
 
 
 
 
 
 
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
+ Observation-Centric SORT ([OC-SORT(https://arxiv.org/abs/2203.14360)]) is a pure motion-model-based multi-object tracker. It aims to improve tracking robustness in crowded scenes and when objects are in non-linear motion. It is designed by recognizing and fixing limitations in Kalman filter and SORT. It is flexible to integrate with different detectors and matching modules, such as appearance similarity. It remains, Simple, Online and Real-time.
13
+ <img src="https://raw.githubusercontent.com/noahcao/OC_SORT/master/assets/teaser.png" width="600"/>
14
+
15
+ ### Installation
16
+ ```
17
+ pip install ocsort
18
+ ```
19
+
20
+ ### Yolov6 Inference
21
+ ```python
22
+ from ocsort.ocsort import OCSort
23
+
24
+ tracker = OCSort(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
+ , Jinkun and Weng, Xinshuo and Khirodkar, Rawal and Pang, Jiangmiao and Kitani, Kris},
33
+ journal={arXiv preprint arXiv:2203.14360},
34
+ year={2022}
35
+ }
36
+ ```