Class: Aws::Rekognition::Types::ComparedSourceImageFace
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::ComparedSourceImageFace
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Overview
Type that describes the face Amazon Rekognition chose to compare with the faces in the target. This contains a bounding box for the selected face and confidence level that the bounding box contains a face. Note that Amazon Rekognition selects the largest face in the source image for this comparison.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bounding_box ⇒ Types::BoundingBox
Bounding box of the face.
-
#confidence ⇒ Float
Confidence level that the selected bounding box contains a face.
Instance Attribute Details
#bounding_box ⇒ Types::BoundingBox
Bounding box of the face.
632 633 634 635 636 637 |
# File 'lib/aws-sdk-rekognition/types.rb', line 632 class ComparedSourceImageFace < Struct.new( :bounding_box, :confidence) SENSITIVE = [] include Aws::Structure end |
#confidence ⇒ Float
Confidence level that the selected bounding box contains a face.
632 633 634 635 636 637 |
# File 'lib/aws-sdk-rekognition/types.rb', line 632 class ComparedSourceImageFace < Struct.new( :bounding_box, :confidence) SENSITIVE = [] include Aws::Structure end |