Struct rusoto_rekognition::IndexFacesResponse[][src]

pub struct IndexFacesResponse {
    pub face_model_version: Option<String>,
    pub face_records: Option<Vec<FaceRecord>>,
    pub orientation_correction: Option<String>,
}

Fields

Version number of the face detection model associated with the input collection (CollectionId).

An array of faces detected and added to the collection. For more information, see collections-index-faces.

The orientation of the input image (counterclockwise direction). If your application displays the image, you can use this value to correct image orientation. The bounding box coordinates returned in FaceRecords represent face locations before the image orientation is corrected.

If the input image is in jpeg format, it might contain exchangeable image (Exif) metadata. If so, and the Exif metadata populates the orientation field, the value of OrientationCorrection is null and the bounding box coordinates in FaceRecords represent face locations after Exif metadata is used to correct the image orientation. Images in .png format don't contain Exif metadata.

Trait Implementations

impl Default for IndexFacesResponse
[src]

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

impl Debug for IndexFacesResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for IndexFacesResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for IndexFacesResponse
[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