pub struct RecognizedPoint {
pub x: f64,
pub y: f64,
pub confidence: f32,
}Expand description
A single normalized VNRecognizedPoint.
Fields§
§x: f64§y: f64§confidence: f32Implementations§
Source§impl RecognizedPoint
impl RecognizedPoint
pub const fn detected_point(self) -> VisionDetectedPoint
Trait Implementations§
Source§impl Clone for RecognizedPoint
impl Clone for RecognizedPoint
Source§fn clone(&self) -> RecognizedPoint
fn clone(&self) -> RecognizedPoint
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RecognizedPoint
impl Debug for RecognizedPoint
Source§impl PartialEq for RecognizedPoint
impl PartialEq for RecognizedPoint
Source§fn eq(&self, other: &RecognizedPoint) -> bool
fn eq(&self, other: &RecognizedPoint) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for RecognizedPoint
impl StructuralPartialEq for RecognizedPoint
Auto Trait Implementations§
impl Freeze for RecognizedPoint
impl RefUnwindSafe for RecognizedPoint
impl Send for RecognizedPoint
impl Sync for RecognizedPoint
impl Unpin for RecognizedPoint
impl UnsafeUnpin for RecognizedPoint
impl UnwindSafe for RecognizedPoint
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