You are now following this Submission
- You will see updates in your followed content feed
- You may receive emails, depending on your communication preferences
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
- Version 1.0.2 (3.08 KB)
MATLAB Release Compatibility
- Compatible with any release
Platform Compatibility
- Windows
- macOS
- Linux
