Skip to content

hpiotr6/Object-Tracking

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Object tracking

Tracker is a Python library for multiple object tracking, i.e. vehicles, based on cartesian plane coordinates. Kalman Filter was used, incorporating three main steps:

  • Prediction of object's future location
  • Reduction of noise introduced by inaccurate detections
  • Facilitating the process of association of multiple objects to their tracks

Installation

Use the package manager pip to install tracker.

pip install .

Usage

import tracker

# create obstacle from coordinates
self.tracker = Tracker()
self.tracker.detections = [(2, 3), (7, 1)]

License

MIT

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages