usls 0.1.11

A Rust library integrated with ONNXRuntime, providing a collection of ML models.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Multi-object tracking (MOT) utilities.
//!
//! This module provides tracking algorithms and utilities for tracking objects across video frames:
//! - **ByteTracker**: ByteTrack algorithm for multi-object tracking
//! - **KalmanFilter**: Kalman filter implementation for object state prediction
//! - **LAPJV**: Hungarian algorithm implementation for data association
//! - **STrack**: Single object track representation

pub mod bytetrack;
pub mod kalman_filter;
pub mod lapjv;
pub mod strack;

pub use bytetrack::*;
pub use kalman_filter::*;
pub use lapjv::*;
pub use strack::*;