Class: Aws::Rekognition::Types::ComparedFace
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::ComparedFace
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Overview
Provides face metadata for target image faces that are analysed by ‘CompareFaces` and `RecognizeCelebrities`.
Instance Attribute Summary collapse
-
#bounding_box ⇒ Types::BoundingBox
Bounding box of the face.
-
#confidence ⇒ Float
Level of confidence that what the bounding box contains is a face.
-
#landmarks ⇒ Array<Types::Landmark>
An array of facial landmarks.
-
#pose ⇒ Types::Pose
Indicates the pose of the face as determined by its pitch, roll, and yaw.
-
#quality ⇒ Types::ImageQuality
Identifies face image brightness and sharpness.
Instance Attribute Details
#bounding_box ⇒ Types::BoundingBox
Bounding box of the face.
285 286 287 288 289 290 291 292 |
# File 'lib/aws-sdk-rekognition/types.rb', line 285 class ComparedFace < Struct.new( :bounding_box, :confidence, :landmarks, :pose, :quality) include Aws::Structure end |
#confidence ⇒ Float
Level of confidence that what the bounding box contains is a face.
285 286 287 288 289 290 291 292 |
# File 'lib/aws-sdk-rekognition/types.rb', line 285 class ComparedFace < Struct.new( :bounding_box, :confidence, :landmarks, :pose, :quality) include Aws::Structure end |
#landmarks ⇒ Array<Types::Landmark>
An array of facial landmarks.
285 286 287 288 289 290 291 292 |
# File 'lib/aws-sdk-rekognition/types.rb', line 285 class ComparedFace < Struct.new( :bounding_box, :confidence, :landmarks, :pose, :quality) include Aws::Structure end |
#pose ⇒ Types::Pose
Indicates the pose of the face as determined by its pitch, roll, and yaw.
285 286 287 288 289 290 291 292 |
# File 'lib/aws-sdk-rekognition/types.rb', line 285 class ComparedFace < Struct.new( :bounding_box, :confidence, :landmarks, :pose, :quality) include Aws::Structure end |
#quality ⇒ Types::ImageQuality
Identifies face image brightness and sharpness.
285 286 287 288 289 290 291 292 |
# File 'lib/aws-sdk-rekognition/types.rb', line 285 class ComparedFace < Struct.new( :bounding_box, :confidence, :landmarks, :pose, :quality) include Aws::Structure end |