Skip to content

JSaunders97/kalman-multi-object-tracker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

kalman-multi-object-tracker

Kalman Filter Based Multiple Object Tracker.

Usage

The ObjectTracker class can be initalised by a list of bounding boxes, the required format is commented in the object_tracker.py file.

The ObjectTracker class has two main methods, predict and update.

Predict

Returns a list of predicted bounding boxes for the tracked objects.

    Args:

    Returns:

        preds: List of bounding box predictions

Update

Update trackers according to ground truths (gts). Ground truths are assigned to trackers according to the assignment which maximises the total intersection over union score of the predictions and ground truth bounding boxes. This assignment is found with the Hungarian Algorithm.

    Args:

        gts: List of object ground truth bounding boxes

        preds: List of predicted object bounding boxes

    Returns:

Shortcomings

  • Tracking ids sometimes swap if objects pass infront of one another.

  • Wrong assignment can occur when multiple objects leave/become occluded and enter/become unoccluded between updates.

About

Kalman Filter Based Multiple Object Tracker

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages