Skip to content

alihares99/Multiple-Object-Tracker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Multi Object Tracker in Qt

This is a library for tracking multi objects in an N-dimentional space in Qt. The library is structured as described in the MATLAB help document: There are four fundamental components in the library:

  • Gating
  • Assignment
  • Filter
  • Maintenance

ScreenShot

The gating procedure is the same as the MATLAB document. The assignment algorithm, however, is completely different from the MATLAB suggestions to opt for better performance and speed of the algorithm. While common assignment algorithms like GNN try to match the best observation/measurement to the current tracks, our implementation tries to find only one assignment per track. Whenever there is more than one observation/measurement candidate for a track, those measurements are marked ambiguous and none is assigned to the track. The filter implementation is based on the alpha-beta filter and the maintenance module is based on the history of the tracks.

We have provided an implementation for all of the components in the library. But thanks to the abstract factory design pattern, you may easily add your own implementation to any of the components in the library without breaking its structure.

Dependencies

  • Eigen C++ library
  • QCustomPlot (included in the repository)

About

A multi objects tracker library in Qt

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages