
Hybrid-SORT multi-object tracker over per-frame [BoundingBox] or [Segmentation]. It extends observation-centric SORT with weak cues - a confidence-state score and a velocity-direction term - so heavily overlapping boxes in a crowd are still told apart. A Kalman motion model plus class-aware gating give 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.
[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, capped at 64 samples.min_hits consecutive frames, then confirmed and emitted. A confirmed track unmatched for up to track_buffer frames coasts on its motion prediction; after that it is dropped and its id is never reused.match_thresh is the IoU-distance gate; track_thresh is the high-confidence gate that drives the first association pass and is the only score allowed to start a new track. Raise track_thresh to suppress spurious tracks from weak detections.Automated release