pub struct TrackerConfig {
pub max_tracks: i32,
pub max_age: i32,
pub min_similarity: i32,
pub keypoint_tracker_params: Option<KeypointTrackerConfig>,
pub bounding_box_tracker_params: Option<BoundingBoxTrackerConfig>,
}
Fields§
§max_tracks: i32
§max_age: i32
§min_similarity: i32
§keypoint_tracker_params: Option<KeypointTrackerConfig>
§bounding_box_tracker_params: Option<BoundingBoxTrackerConfig>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TrackerConfig
impl RefUnwindSafe for TrackerConfig
impl Send for TrackerConfig
impl Sync for TrackerConfig
impl Unpin for TrackerConfig
impl UnwindSafe for TrackerConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more