MultiObjectTrackerK​LT

Version 1.0.2 (3.08 KB) by Ross Kinard
Simple modification to MultiObjectTrackerKLT from The MathWorks, Inc to allow labels to be added to multi object tracker.
439 Downloads
Updated 14 Sep 2018

View License

Simple modification to MultiObjectTrackerKLT from The MathWorks, Inc to allow labels to be added to multi object tracker. Function can still be used as before without labeling, and still works with single or multiple values. Label is passed as cell array of characters.

Examples of usage:

tracker = MultiObjectTrackerKLT;

tracker.addDetections(frame, bboxes(1,:), {'body'});
personLabel = {'ross'};
tracker.addDetections(frame, bboxes(2,:), personLabel);

tracker.addDetections(frame, bboxes, [{'Body'};{'Head'}]);

displayFrame = insertObjectAnnotation(frameRGB, 'rectangle',...
tracker.Bboxes, tracker.BoxLabels);

Cite As

Ross Kinard (2024). MultiObjectTrackerKLT (https://www.mathworks.com/matlabcentral/fileexchange/68811-multiobjecttrackerklt), MATLAB Central File Exchange. Retrieved .

MATLAB Release Compatibility
Created with R2018b
Compatible with any release
Platform Compatibility
Windows macOS Linux

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Version Published Release Notes
1.0.2

Updated for no input

1.0.1

Correction for no labels provided with mutiple bboxes.

1.0.0