Class: Aws::Rekognition::Types::IndexFacesResponse

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-rekognition/types.rb

Instance Attribute Summary collapse

Instance Attribute Details

#face_recordsArray<Types::FaceRecord>

An array of faces detected and added to the collection. For more information, see howitworks-index-faces.

Returns:



993
994
995
996
997
# File 'lib/aws-sdk-rekognition/types.rb', line 993

class IndexFacesResponse < Struct.new(
  :face_records,
  :orientation_correction)
  include Aws::Structure
end

#orientation_correctionString

The orientation of the input image (counterclockwise direction). If your application displays the image, you can use this value to correct image orientation. The bounding box coordinates returned in ‘FaceRecords` represent face locations before the image orientation is corrected.

<note markdown=“1”> If the input image is in jpeg format, it might contain exchangeable image (Exif) metadata. If so, and the Exif metadata populates the orientation field, the value of ‘OrientationCorrection` is null and the bounding box coordinates in `FaceRecords` represent face locations after Exif metadata is used to correct the image orientation. Images in .png format don’t contain Exif metadata.

</note>

Returns:

  • (String)


993
994
995
996
997
# File 'lib/aws-sdk-rekognition/types.rb', line 993

class IndexFacesResponse < Struct.new(
  :face_records,
  :orientation_correction)
  include Aws::Structure
end