benchmarks.hota.tracker
module unitrack.benchmarks.hota.trackerTracker factories (mask-IoU, cosine, cascade, Kalman) + a registry.
Each factory builds a :class:`~unitrack.Tracker` over a fixed ``(height, width)``
from existing unitrack primitives — no core-library changes. ``TRACKER_REGISTRY``
maps a key to a ``(height, width) -> MultiStream`` factory so the benchmark can
sweep the tracker as a first-class variable, parallel to the model registry.
Members
function
- build_cascade_trackerBuild a two-stage cascade: appearance for high-score, mask-IoU for the rest.
- build_cosine_trackerBuild an appearance tracker matching instances by embedding cosine distance.
- build_kalman_trackerBuild a constant-velocity centroid Kalman tracker with a motion gate.
- build_learned_trackerBuild a MOTR-style learned appearance tracker from a trained checkpoint.
property
Source: unitrack/benchmarks/hota/tracker.py:1