AIAny
AI Video2025
Icon for item

trackers

Clean-room, modular implementations of multi-object tracking algorithms — SORT, ByteTrack, OC-SORT, BoT-SORT, C-BIoU — behind one interface. Detector-agnostic: works with YOLO, DETR, or any bounding-box model via supervision.Detections.

Introduction

Most multi-object tracking in production is a graft: one research fork for ByteTrack, another for BoT-SORT, and a layer of glue translating each one's bespoke detection format. This library takes the opposite bet — every algorithm is re-implemented clean-room from its paper against a single API, so switching from SORT to BoT-SORT is a one-line change instead of a rewrite.

What Sets It Apart
  • Detector-agnostic by design: it consumes supervision.Detections, so YOLO, DETR, RT-DETR, or any box producer plugs in with no adapter code — the tracker never cares where the boxes came from.
  • One interface spanning SORT, ByteTrack, OC-SORT, BoT-SORT, and C-BIoU, which means you can A/B algorithms on the same pipeline rather than maintaining five separate integrations.
  • Tuning and benchmarking are built in, not left as homework: Optuna-driven hyperparameter search (trackers tune) plus an evaluation suite reporting CLEAR, HOTA, and Identity metrics across MOT17, SportsMOT, SoccerNet, and DanceTrack.
  • BoT-SORT adds camera-motion compensation, so moving-camera footage from drones or sports broadcasts doesn't break association the way fixed-camera trackers do.
Who It's For

Great fit if you need to compare trackers on your own detector, or want a maintained, readable reference implementation instead of a half-abandoned paper repo. The reported HOTA spread of 47.2–84.5 across datasets makes it a sensible bench for choosing an algorithm before you commit. Look elsewhere if you need a single battle-hardened tracker squeezed for one domain — a purpose-built fork may still edge it on raw numbers — or if your problem needs trackers outside the motion-and-appearance family it covers.

Information

  • Websitegithub.com
  • AuthorsRoboflow
  • Published date2025/04/14

Categories

More Items

Hugging Face
AI Video2026

Provides Parallel Decoding Distillation (PDD) LoRA adapters that accelerate MiniMax-H3 video generation into few inference steps. Includes official 8-step Acc LoRAs for FL2VA and Ref2VA (rank=64, network_alpha=64, BF16), demo comparison videos, and example scripts using Diffusers' MiniMax-H3 ModularPipeline.

Hugging Face
AI Video2026

Conditions a MiniMax‑H3 video generator with a single ControlNet‑Union checkpoint to accept Canny, Depth, HED, MLSD or Pose control videos and run video inpainting. Guidance‑distilled for one‑pass inference; requires the base MiniMax‑H3 weights and specific control-branch config.

Hugging Face
AI Video2026

Upscales Minimax H3 24-channel VAE latents in-place to increase spatial resolution while preserving the time dimension. Replaces the decode→pixel-upscale→encode round-trip with a learned 2D/3D latent upscaler to save compute and avoid interpolation ghosting; supports 1.0–4.0× scaling.