Edit model card

Model Description

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.

Installation

pip install ocsort

Tracker

from ocsort.ocsort import OCSort

tracker = OCSort(args)
for image in images:
   dets = detector(image)
   online_targets = tracker.update(dets)

BibTeX Entry and Citation Info

, Jinkun and Weng, Xinshuo and Khirodkar, Rawal and Pang, Jiangmiao and Kitani, Kris},
 journal={arXiv preprint arXiv:2203.14360},
 year={2022}
}
Downloads last month
0
Inference API
Unable to determine this model's library. Check the docs .

Space using kadirnar/OcSort 1