pub enum FacialRegion {
LeftEye,
RightEye,
LeftEyebrow,
RightEyebrow,
Nose,
UpperLip,
LowerLip,
LeftCheek,
RightCheek,
Jaw,
Forehead,
}Expand description
Face landmark indices (simplified 68-point model concept) We don’t store raw coordinates - we store SEMANTIC state
Variants§
Trait Implementations§
Source§impl Clone for FacialRegion
impl Clone for FacialRegion
Source§fn clone(&self) -> FacialRegion
fn clone(&self) -> FacialRegion
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 FacialRegion
impl Debug for FacialRegion
Source§impl PartialEq for FacialRegion
impl PartialEq for FacialRegion
impl Copy for FacialRegion
impl Eq for FacialRegion
impl StructuralPartialEq for FacialRegion
Auto Trait Implementations§
impl Freeze for FacialRegion
impl RefUnwindSafe for FacialRegion
impl Send for FacialRegion
impl Sync for FacialRegion
impl Unpin for FacialRegion
impl UnsafeUnpin for FacialRegion
impl UnwindSafe for FacialRegion
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