pub enum BodyFaceGestureAnalysis {
ArcFace,
EmotionFerPlus,
}
Expand description
Body, Face & Gesture Analysis
Face detection models identify and/or recognize human faces and emotions in given images. Body and Gesture Analysis models identify gender and age in given image.
Variants§
ArcFace
A CNN based model for face recognition which learns discriminative features of faces and produces embeddings for input face images.
Source: https://github.com/onnx/models/tree/master/vision/body_analysis/arcface
Variant downloaded: ONNX Version 1.3 with Opset Version 8.
EmotionFerPlus
Deep CNN for emotion recognition trained on images of faces.
Source: https://github.com/onnx/models/tree/master/vision/body_analysis/emotion_ferplus
Variant downloaded: ONNX Version 1.3 with Opset Version 8.
Trait Implementations§
Source§impl Clone for BodyFaceGestureAnalysis
impl Clone for BodyFaceGestureAnalysis
Source§fn clone(&self) -> BodyFaceGestureAnalysis
fn clone(&self) -> BodyFaceGestureAnalysis
Returns a copy 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 BodyFaceGestureAnalysis
impl Debug for BodyFaceGestureAnalysis
Source§impl From<BodyFaceGestureAnalysis> for AvailableOnnxModel
impl From<BodyFaceGestureAnalysis> for AvailableOnnxModel
Source§fn from(model: BodyFaceGestureAnalysis) -> Self
fn from(model: BodyFaceGestureAnalysis) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BodyFaceGestureAnalysis
impl RefUnwindSafe for BodyFaceGestureAnalysis
impl Send for BodyFaceGestureAnalysis
impl Sync for BodyFaceGestureAnalysis
impl Unpin for BodyFaceGestureAnalysis
impl UnwindSafe for BodyFaceGestureAnalysis
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