Metadata-Version: 2.1
Name: norfair-tracker
Version: 0.0.3
Summary: Packaged version of the Norfair Tracker Module
Home-page: https://github.com/kadirnar/Norfair-Track
Author: kadirnar
License: MIT
Keywords: machine-learning,deep-learning,pytorch,vision,image-classification,object-detection,yolov7,detector,yolov5
Classifier: Development Status :: 5 - Production/Stable
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Education
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

<div align="center">
<h2>
  Norfair-Pip: Packaged version of the Norfair Tracker Module  
</h2>
<h4>
    <img width="500" alt="teaser" src="docs/demo.gif">
</h4>
</div>

## <div align="center">Overview</div>

This repo is a packaged version of the [NorFair](https://github.com/tryolabs/norfair/) tracker module.
### Installation
```
pip install norfair-tracker
```

### Detection Model + Norfair 
```python
from norfair_tracker.norfair import NorFair

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