Class: Aws::Rekognition::Types::DetectLabelsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::DetectLabelsResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Instance Attribute Summary collapse
-
#labels ⇒ Array<Types::Label>
An array of labels for the real-world objects detected.
-
#orientation_correction ⇒ String
The orientation of the input image (counter-clockwise direction).
Instance Attribute Details
#labels ⇒ Array<Types::Label>
An array of labels for the real-world objects detected.
530 531 532 533 534 |
# File 'lib/aws-sdk-rekognition/types.rb', line 530 class DetectLabelsResponse < Struct.new( :labels, :orientation_correction) include Aws::Structure end |
#orientation_correction ⇒ String
The orientation of the input image (counter-clockwise direction). If your application displays the image, you can use this value to correct the orientation. If Amazon Rekognition detects that the input image was rotated (for example, by 90 degrees), it first corrects the orientation before detecting the labels.
<note markdown=“1”> If the input image Exif metadata populates the orientation field, Amazon Rekognition does not perform orientation correction and the value of OrientationCorrection will be null.
</note>
530 531 532 533 534 |
# File 'lib/aws-sdk-rekognition/types.rb', line 530 class DetectLabelsResponse < Struct.new( :labels, :orientation_correction) include Aws::Structure end |