BoxMOT provides pluggable state-of-the-art multi-object tracking modules for segmentation, object detection, and pose estimation models. Current version 18.0.0 requires Python <3.13,>=3.9 and follows a fast release cadence.
pip install boxmotNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Initialize BoTSORT tracker and update with dummy detections.
Use `from boxmot import BoTSORT` instead of `from boxmot.trackers import BoTSORT`.
Call tracker.update(detections, image) where image is a numpy array (H,W,3). Review return structure.
Pass a configuration dictionary to the tracker constructor, e.g., BoTSORT(config={...}).