//! Multi-object tracking algorithms.
//!
//! # Algorithms
//!
//! * **SORT** — Simple Online and Realtime Tracking (Bewley et al. 2016)
//! * **ByteTrack** — Two-stage association tracker (Zhang et al. 2022)
//!
//! Both trackers use Kalman filtering for state prediction and the Hungarian
//! algorithm for detection-to-track assignment.
pub use ByteTracker;
pub use hungarian_assign;
pub use KalmanBoxTracker;
pub use SortTracker;
pub use ;