1 2 3 4 5 6 7 8
//! Implementation of various multi-object tracking (MOT) algorithms. //! //! This module contains the core tracking logic for algorithms like ByteTrack, SORT, DeepSORT, and OC-SORT. pub mod byte_track; pub mod deepsort; pub mod ocsort; pub mod sort;