Struct rusoto_rekognition::FaceDetail [] [src]

pub struct FaceDetail {
    pub age_range: Option<AgeRange>,
    pub beard: Option<Beard>,
    pub bounding_box: Option<BoundingBox>,
    pub confidence: Option<f32>,
    pub emotions: Option<Vec<Emotion>>,
    pub eyeglasses: Option<Eyeglasses>,
    pub eyes_open: Option<EyeOpen>,
    pub gender: Option<Gender>,
    pub landmarks: Option<Vec<Landmark>>,
    pub mouth_open: Option<MouthOpen>,
    pub mustache: Option<Mustache>,
    pub pose: Option<Pose>,
    pub quality: Option<ImageQuality>,
    pub smile: Option<Smile>,
    pub sunglasses: Option<Sunglasses>,
}

Structure containing attributes of the face that the algorithm detected.

Fields

The estimated age range, in years, for the face. Low represents the lowest estimated age and High represents the highest estimated age.

Indicates whether or not the face has a beard, and the confidence level in the determination.

Bounding box of the face.

Confidence level that the bounding box contains a face (and not a different object such as a tree).

The emotions detected on the face, and the confidence level in the determination. For example, HAPPY, SAD, and ANGRY.

Indicates whether or not the face is wearing eye glasses, and the confidence level in the determination.

Indicates whether or not the eyes on the face are open, and the confidence level in the determination.

Gender of the face and the confidence level in the determination.

Indicates the location of landmarks on the face.

Indicates whether or not the mouth on the face is open, and the confidence level in the determination.

Indicates whether or not the face has a mustache, and the confidence level in the determination.

Indicates the pose of the face as determined by its pitch, roll, and yaw.

Identifies image brightness and sharpness.

Indicates whether or not the face is smiling, and the confidence level in the determination.

Indicates whether or not the face is wearing sunglasses, and the confidence level in the determination.

Trait Implementations

impl Default for FaceDetail
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for FaceDetail
[src]

[src]

Formats the value using the given formatter.

impl Clone for FaceDetail
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more