Class: Aws::Rekognition::Types::FaceMatch
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::FaceMatch
- Defined in:
- gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb
Overview
Provides face metadata. In addition, it also provides the confidence in the match of this face with the input face.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#face ⇒ Types::Face
Describes the face properties such as the bounding box, face ID, image ID of the source image, and external image ID that you assigned.
-
#similarity ⇒ Float
Confidence in the match of this face with the input face.
Instance Attribute Details
#face ⇒ Types::Face
Describes the face properties such as the bounding box, face ID, image ID of the source image, and external image ID that you assigned.
3019 3020 3021 3022 3023 3024 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 3019 class FaceMatch < Struct.new( :similarity, :face) SENSITIVE = [] include Aws::Structure end |