[][src]Struct rusoto_rekognition::FaceDetail

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.

A FaceDetail object contains either the default facial attributes or all facial attributes. The default attributes are BoundingBox, Confidence, Landmarks, Pose, and Quality.

GetFaceDetection is the only Amazon Rekognition Video stored video operation that can return a FaceDetail object with all attributes. To specify which attributes to return, use the FaceAttributes input parameter for StartFaceDetection. The following Amazon Rekognition Video operations return only the default attributes. The corresponding Start operations don't have a FaceAttributes input parameter.

  • GetCelebrityRecognition

  • GetPersonTracking

  • GetFaceSearch

The Amazon Rekognition Image DetectFaces and IndexFaces operations can return all facial attributes. To specify which attributes to return, use the Attributes input parameter for DetectFaces. For IndexFaces, use the DetectAttributes input parameter.

Fields

age_range: Option<AgeRange>

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

beard: Option<Beard>

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

bounding_box: Option<BoundingBox>

Bounding box of the face. Default attribute.

confidence: Option<f32>

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

emotions: Option<Vec<Emotion>>

The emotions that appear to be expressed on the face, and the confidence level in the determination. The API is only making a determination of the physical appearance of a person's face. It is not a determination of the person’s internal emotional state and should not be used in such a way. For example, a person pretending to have a sad face might not be sad emotionally.

eyeglasses: Option<Eyeglasses>

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

eyes_open: Option<EyeOpen>

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

gender: Option<Gender>

The predicted gender of a detected face.

landmarks: Option<Vec<Landmark>>

Indicates the location of landmarks on the face. Default attribute.

mouth_open: Option<MouthOpen>

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

mustache: Option<Mustache>

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

pose: Option<Pose>

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

quality: Option<ImageQuality>

Identifies image brightness and sharpness. Default attribute.

smile: Option<Smile>

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

sunglasses: Option<Sunglasses>

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

Trait Implementations

impl Clone for FaceDetail[src]

impl Debug for FaceDetail[src]

impl Default for FaceDetail[src]

impl<'de> Deserialize<'de> for FaceDetail[src]

impl PartialEq<FaceDetail> for FaceDetail[src]

impl StructuralPartialEq for FaceDetail[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.