Class: Aws::Rekognition::Types::DetectLabelsImageBackground
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::DetectLabelsImageBackground
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Overview
The background of the image with regard to image quality and dominant colors.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#dominant_colors ⇒ Array<Types::DominantColor>
The dominant colors found in the background of an image, defined with RGB values, CSS color name, simplified color name, and PixelPercentage (the percentage of image pixels that have a particular color).
-
#quality ⇒ Types::DetectLabelsImageQuality
The quality of the image background as defined by brightness and sharpness.
Instance Attribute Details
#dominant_colors ⇒ Array<Types::DominantColor>
The dominant colors found in the background of an image, defined with RGB values, CSS color name, simplified color name, and PixelPercentage (the percentage of image pixels that have a particular color).
2148 2149 2150 2151 2152 2153 |
# File 'lib/aws-sdk-rekognition/types.rb', line 2148 class DetectLabelsImageBackground < Struct.new( :quality, :dominant_colors) SENSITIVE = [] include Aws::Structure end |
#quality ⇒ Types::DetectLabelsImageQuality
The quality of the image background as defined by brightness and sharpness.
2148 2149 2150 2151 2152 2153 |
# File 'lib/aws-sdk-rekognition/types.rb', line 2148 class DetectLabelsImageBackground < Struct.new( :quality, :dominant_colors) SENSITIVE = [] include Aws::Structure end |