Struct rusoto_rekognition::CompareFacesRequest[][src]

pub struct CompareFacesRequest {
    pub similarity_threshold: Option<f32>,
    pub source_image: Image,
    pub target_image: Image,
}

Fields

The minimum level of confidence in the face matches that a match must meet to be included in the FaceMatches array.

The input image as base64-encoded bytes or an S3 object. If you use the AWS CLI to call Amazon Rekognition operations, passing base64-encoded image bytes is not supported.

The target image as base64-encoded bytes or an S3 object. If you use the AWS CLI to call Amazon Rekognition operations, passing base64-encoded image bytes is not supported.

Trait Implementations

impl Default for CompareFacesRequest
[src]

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

impl Debug for CompareFacesRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CompareFacesRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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