Class: Aws::Rekognition::Types::UnindexedFace

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#face_detailTypes::FaceDetail

The structure that contains attributes of a face that IndexFacesdetected, but didn't index.

Returns:



7993
7994
7995
7996
7997
7998
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 7993

class UnindexedFace < Struct.new(
  :reasons,
  :face_detail)
  SENSITIVE = []
  include Aws::Structure
end

#reasonsArray<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 for IndexFaces.

  • 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.

Returns:

  • (Array<String>)


7993
7994
7995
7996
7997
7998
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 7993

class UnindexedFace < Struct.new(
  :reasons,
  :face_detail)
  SENSITIVE = []
  include Aws::Structure
end