tracktor 0.4.1

Multi-target tracking with random finite sets
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Model traits for multi-target tracking
//!
//! This module defines the core traits that describe target dynamics,
//! sensor characteristics, clutter, and target birth processes.

mod birth;
mod clutter;
mod observation;
mod transition;

pub use birth::*;
pub use clutter::*;
pub use observation::*;
pub use transition::*;