MultiObjectTrackerK​LT

Simple modification to MultiObjectTrackerKLT from The MathWorks, Inc to allow labels to be added to multi object tracker.

You are now following this Submission

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 (2026). MultiObjectTrackerKLT (https://www.mathworks.com/matlabcentral/fileexchange/68811-multiobjecttrackerklt), MATLAB Central File Exchange. Retrieved .

General Information

MATLAB Release Compatibility

  • Compatible with any release

Platform Compatibility

  • Windows
  • macOS
  • Linux
Version Published Release Notes Action
1.0.2

Updated for no input

1.0.1

Correction for no labels provided with mutiple bboxes.

1.0.0