pub struct TrackingMetrics {
pub total_ground_truth: u64,
pub matches: u64,
pub false_positives: u64,
pub false_negatives: u64,
pub id_switches: u64,
pub precision: f32,
pub recall: f32,
pub f1: f32,
pub mota: f32,
pub motp: f32,
}Fields§
§total_ground_truth: u64§matches: u64§false_positives: u64§false_negatives: u64§id_switches: u64§precision: f32§recall: f32§f1: f32§mota: f32§motp: f32Trait Implementations§
Source§impl Clone for TrackingMetrics
impl Clone for TrackingMetrics
Source§fn clone(&self) -> TrackingMetrics
fn clone(&self) -> TrackingMetrics
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TrackingMetrics
impl Debug for TrackingMetrics
Source§impl PartialEq for TrackingMetrics
impl PartialEq for TrackingMetrics
impl Copy for TrackingMetrics
impl StructuralPartialEq for TrackingMetrics
Auto Trait Implementations§
impl Freeze for TrackingMetrics
impl RefUnwindSafe for TrackingMetrics
impl Send for TrackingMetrics
impl Sync for TrackingMetrics
impl Unpin for TrackingMetrics
impl UnsafeUnpin for TrackingMetrics
impl UnwindSafe for TrackingMetrics
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more