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]

[src]

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

impl Debug for ComparedFace
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ComparedFace
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for ComparedFace

impl Sync for ComparedFace