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
- Host: GitHub
- URL: https://github.com/kadirnar/ocsort-pip
- Owner: kadirnar
- License: mit
- Created: 2022-11-19T21:01:13.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-06T23:39:51.000Z (about 3 years ago)
- Last Synced: 2025-06-22T22:46:50.599Z (8 months ago)
- Topics: deepsort, object-detection, object-tracker, ocsort, sort, strongsort
- Language: Python
- Homepage:
- Size: 13.1 MB
- Stars: 15
- Watchers: 3
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
##
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}
}
```