Struct rust_faces::Face
source · pub struct Face {
pub rect: Rect,
pub confidence: f32,
pub landmarks: Option<Vec<(f32, f32)>>,
}Expand description
Face detection result.
Fields§
§rect: RectFace’s bounding rectangle.
confidence: f32Confidence of the detection.
landmarks: Option<Vec<(f32, f32)>>Landmarks of the face.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Face
impl Send for Face
impl Sync for Face
impl Unpin for Face
impl UnwindSafe for Face
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