pub enum Confidence {
Failed,
Low,
Medium,
High,
}
Expand description
Used by the tracker and mapper to estimate the certainty in this pose.
Variants§
Failed
The tracker/mapper has failed. This information is probably not reliable.
Low
The tracker/mapper confidence is low.
Medium
The tracker/mapper confidence is marginal.
High
The tracker/mapper confidence is high.
Auto Trait Implementations§
impl Freeze for Confidence
impl RefUnwindSafe for Confidence
impl Send for Confidence
impl Sync for Confidence
impl Unpin for Confidence
impl UnwindSafe for Confidence
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