norfair-tracker

Packaged version of the Norfair Tracker Module


Keywords
machine-learning, deep-learning, pytorch, vision, image-classification, object-detection, yolov7, detector, yolov5
License
MIT
Install
pip install norfair-tracker==0.0.2

Documentation

Norfair-Pip: Packaged version of the Norfair Tracker Module

teaser

Overview

This repo is a packaged version of the NorFair tracker module.

Installation

pip install norfair-tracker

Detection Model + Norfair

from norfair_tracker.norfair import NorFair

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