
BoostTrack multi-object tracker over per-frame [BoundingBox] or [Segmentation]. A SORT-family Kalman tracker that boosts detection confidence and inflates soft-BIoU overlap before association, so weak detections in crowded scenes survive and keep their ids. Class-aware gating gives stable ids. Emits one active-track list per frame, not per box.
Tracked detections with trajectories into zone-transition logic.
Counted, tracked detections summarised over HTTP.
Instance-mask tracking - segmentations in, mask-bearing tracks out.
Re-id chain to hold ids across long occlusions BoostTrack alone cannot.
[TrackedSegmentation] output arm is only selectable when the input is [Segmentation]; the carried mask comes from the input. With [BoundingBox] input it cannot be resolved and the worker errors at startup.[Track] arm is the only one that fills each track's ``trajectory``; it holds the track's own past centre points, oldest first.track_thresh gate, so an occluded object on a weak detection is kept and matched rather than dropped.min_hits consecutive frames, then confirmed and emitted. A confirmed track unmatched for up to track_buffer frames coasts on its Kalman prediction; after that it is dropped and its id is never reused. State is in-process, so a restart resets all ids.match_thresh is the IoU-distance gate - a track/detection pair whose 1 - IoU exceeds it cannot link. track_thresh is the high-confidence gate for the first association pass and for spawning new tracks; the confidence and soft-BIoU boosting is applied before it. class_agnostic false confines matches to the same class id.Automated release