logo
pub struct FaceDetail {
Show 15 fields 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>,
}
Expand description

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more