Class: Aws::Rekognition::Types::CompareFacesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::CompareFacesRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Overview
Note:
When making an API call, you may pass CompareFacesRequest data as a hash:
{
source_image: { # required
bytes: "data",
s3_object: {
bucket: "S3Bucket",
name: "S3ObjectName",
version: "S3ObjectVersion",
},
},
target_image: { # required
bytes: "data",
s3_object: {
bucket: "S3Bucket",
name: "S3ObjectName",
version: "S3ObjectVersion",
},
},
similarity_threshold: 1.0,
}
Instance Attribute Summary collapse
-
#similarity_threshold ⇒ Float
The minimum level of confidence in the face matches that a match must meet to be included in the ‘FaceMatches` array.
-
#source_image ⇒ Types::Image
The source image, either as bytes or as an S3 object.
-
#target_image ⇒ Types::Image
The target image, either as bytes or as an S3 object.
Instance Attribute Details
#similarity_threshold ⇒ Float
The minimum level of confidence in the face matches that a match must meet to be included in the ‘FaceMatches` array.
192 193 194 195 196 197 |
# File 'lib/aws-sdk-rekognition/types.rb', line 192 class CompareFacesRequest < Struct.new( :source_image, :target_image, :similarity_threshold) include Aws::Structure end |
#source_image ⇒ Types::Image
The source image, either as bytes or as an S3 object.
192 193 194 195 196 197 |
# File 'lib/aws-sdk-rekognition/types.rb', line 192 class CompareFacesRequest < Struct.new( :source_image, :target_image, :similarity_threshold) include Aws::Structure end |
#target_image ⇒ Types::Image
The target image, either as bytes or as an S3 object.
192 193 194 195 196 197 |
# File 'lib/aws-sdk-rekognition/types.rb', line 192 class CompareFacesRequest < Struct.new( :source_image, :target_image, :similarity_threshold) include Aws::Structure end |