<div align="center">
<h1>
StrongSort-Pip: Packaged version of StrongSort
</h1>
<h4>
<img width="700" alt="teaser" src="docs/uav.gif">
</h4>
<div>
<a href="https://pepy.tech/project/strongsort"><img src="https://pepy.tech/badge/strongsort" alt="downloads"></a>
<a href="https://badge.fury.io/py/strongsort"><img src="https://badge.fury.io/py/strongsort.svg" alt="pypi version"></a>
</div>
</div>
## <div align="center">Overview</div>
This repo is a packaged version of the [StrongSort](https://github.com/dyhBUPT/StrongSORT) algorithm.
### Installation
```
pip install strongsort
```
### Detection Model + StrongSort
```python
from strong_sort import StrongSORT
tracker = StrongSORT(model_weights='model.pth', device='cuda')
pred = model(img)
for i, det in enumerate(pred):
det[i] = tracker[i].update(detection, im0s)
```
## Citations
```bibtex
@article{du2022strongsort,
title={Strongsort: Make deepsort great again},
author={Du, Yunhao and Song, Yang and Yang, Bo and Zhao, Yanyun},
journal={arXiv preprint arXiv:2202.13514},
year={2022}
}
```
Raw data
{
"_id": null,
"home_page": "https://github.com/kadirnar/strongsort-pip",
"name": "strongsort",
"maintainer": "",
"docs_url": null,
"requires_python": ">=3.6",
"maintainer_email": "",
"keywords": "machine-learning,deep-learning,pytorch,vision,image-classification,object-detection,yolov7,detector,yolov5",
"author": "kadirnar",
"author_email": "",
"download_url": "https://files.pythonhosted.org/packages/a6/00/acf77d55e71a7c5616b76c6014fe90353058c93555b035303536a86b0b99/strongsort-0.2.1.tar.gz",
"platform": null,
"description": "<div align=\"center\">\n<h1>\n StrongSort-Pip: Packaged version of StrongSort \n</h1>\n<h4>\n <img width=\"700\" alt=\"teaser\" src=\"docs/uav.gif\">\n</h4>\n<div>\n <a href=\"https://pepy.tech/project/strongsort\"><img src=\"https://pepy.tech/badge/strongsort\" alt=\"downloads\"></a>\n <a href=\"https://badge.fury.io/py/strongsort\"><img src=\"https://badge.fury.io/py/strongsort.svg\" alt=\"pypi version\"></a>\n</div>\n</div>\n\n## <div align=\"center\">Overview</div>\n\nThis repo is a packaged version of the [StrongSort](https://github.com/dyhBUPT/StrongSORT) algorithm.\n### Installation\n```\npip install strongsort\n```\n\n### Detection Model + StrongSort \n```python\nfrom strong_sort import StrongSORT\n\ntracker = StrongSORT(model_weights='model.pth', device='cuda')\npred = model(img)\nfor i, det in enumerate(pred):\n det[i] = tracker[i].update(detection, im0s)\n```\n\n## Citations\n```bibtex\n@article{du2022strongsort,\n title={Strongsort: Make deepsort great again},\n author={Du, Yunhao and Song, Yang and Yang, Bo and Zhao, Yanyun},\n journal={arXiv preprint arXiv:2202.13514},\n year={2022}\n}\n```\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Packaged version of the Strongsort repository",
"version": "0.2.1",
"split_keywords": [
"machine-learning",
"deep-learning",
"pytorch",
"vision",
"image-classification",
"object-detection",
"yolov7",
"detector",
"yolov5"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "a600acf77d55e71a7c5616b76c6014fe90353058c93555b035303536a86b0b99",
"md5": "fce33cd8a733f58fbb944f60c899e660",
"sha256": "cfa71400bd12023759062706384ae31e93ebebec5dbfc3829dcb5429521a6b23"
},
"downloads": -1,
"filename": "strongsort-0.2.1.tar.gz",
"has_sig": false,
"md5_digest": "fce33cd8a733f58fbb944f60c899e660",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 61185,
"upload_time": "2023-01-25T18:26:45",
"upload_time_iso_8601": "2023-01-25T18:26:45.582912Z",
"url": "https://files.pythonhosted.org/packages/a6/00/acf77d55e71a7c5616b76c6014fe90353058c93555b035303536a86b0b99/strongsort-0.2.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-01-25 18:26:45",
"github": true,
"gitlab": false,
"bitbucket": false,
"github_user": "kadirnar",
"github_project": "strongsort-pip",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"requirements": [
{
"name": "easydict",
"specs": [
[
"==",
"1.10"
]
]
},
{
"name": "gdown",
"specs": [
[
"==",
"4.5.3"
]
]
},
{
"name": "motmetrics",
"specs": [
[
"==",
"1.2.5"
]
]
},
{
"name": "opencv_python",
"specs": [
[
"==",
"4.6.0.66"
]
]
},
{
"name": "torch",
"specs": [
[
"==",
"1.13.0"
]
]
},
{
"name": "torchvision",
"specs": [
[
"==",
"0.14.0"
]
]
}
],
"lcname": "strongsort"
}