Struct rusoto_rekognition::ComparedFace[][src]

pub struct ComparedFace {
    pub bounding_box: Option<BoundingBox>,
    pub confidence: Option<f32>,
    pub landmarks: Option<Vec<Landmark>>,
    pub pose: Option<Pose>,
    pub quality: Option<ImageQuality>,
}

Provides face metadata for target image faces that are analysed by CompareFaces and RecognizeCelebrities.

Fields

Bounding box of the face.

Level of confidence that what the bounding box contains is a face.

An array of facial landmarks.

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

Identifies face image brightness and sharpness.

Trait Implementations

impl Default for ComparedFace
[src]

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

impl Debug for ComparedFace
[src]

Formats the value using the given formatter. Read more

impl Clone for ComparedFace
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ComparedFace
[src]

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

This method tests for !=.

Auto Trait Implementations