Class: Aws::Rekognition::Types::UnindexedFace
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::UnindexedFace
- Defined in:
- gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb
Overview
A face that IndexFaces detected, but didn't index. Use the Reasons
response attribute to determine why a face wasn't indexed.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#face_detail ⇒ Types::FaceDetail
The structure that contains attributes of a face that
IndexFaces
detected, but didn't index. -
#reasons ⇒ Array<String>
An array of reasons that specify why a face wasn't indexed.
Instance Attribute Details
#face_detail ⇒ Types::FaceDetail
The structure that contains attributes of a face that
IndexFaces
detected, but didn't index.
8006 8007 8008 8009 8010 8011 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 8006 class UnindexedFace < Struct.new( :reasons, :face_detail) SENSITIVE = [] include Aws::Structure end |
#reasons ⇒ Array<String>
An array of reasons that specify why a face wasn't indexed.
EXTREME_POSE - The face is at a pose that can't be detected. For example, the head is turned too far away from the camera.
EXCEEDS_MAX_FACES - The number of faces detected is already higher than that specified by the
MaxFaces
input parameter forIndexFaces
.LOW_BRIGHTNESS - The image is too dark.
LOW_SHARPNESS - The image is too blurry.
LOW_CONFIDENCE - The face was detected with a low confidence.
SMALL_BOUNDING_BOX - The bounding box around the face is too small.
8006 8007 8008 8009 8010 8011 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 8006 class UnindexedFace < Struct.new( :reasons, :face_detail) SENSITIVE = [] include Aws::Structure end |