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

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

OcSort-Pip: Packaged version of the OcSort repository
https://github.com/kadirnar/ocsort-pip

deepsort object-detection object-tracker ocsort sort strongsort

Last synced: 7 months ago
JSON representation

OcSort-Pip: Packaged version of the OcSort repository

Awesome Lists containing this project

README

          



OcSort-Pip: Packaged version of the OcSort repository



teaser



downloads
pypi version

##

Overview

This repo is a packaged version of the [OcSort](https://github.com/noahcao/OC_SORT) algorithm.
### Installation
```
pip install ocsort
```

### Detection Model + OcSort
```python
from ocsort.ocsort import OCSort

tracker = OCSort(args)
for image in images:
dets = detector(image)
online_targets = tracker.update(dets)
```
### Citation
```bibtex
@article{cao2022observation,
title={Observation-Centric SORT: Rethinking SORT for Robust Multi-Object Tracking},
author={Cao, Jinkun and Weng, Xinshuo and Khirodkar, Rawal and Pang, Jiangmiao and Kitani, Kris},
journal={arXiv preprint arXiv:2203.14360},
year={2022}
}
```