Class: Aws::Rekognition::Types::DetectLabelsImageForeground
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::DetectLabelsImageForeground
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Overview
The foreground 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 foreground 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 foreground as defined by brightness and sharpness.
Instance Attribute Details
#dominant_colors ⇒ Array<Types::DominantColor>
The dominant colors found in the foreground 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).
2170 2171 2172 2173 2174 2175 |
# File 'lib/aws-sdk-rekognition/types.rb', line 2170 class DetectLabelsImageForeground < Struct.new( :quality, :dominant_colors) SENSITIVE = [] include Aws::Structure end |
#quality ⇒ Types::DetectLabelsImageQuality
The quality of the image foreground as defined by brightness and sharpness.
2170 2171 2172 2173 2174 2175 |
# File 'lib/aws-sdk-rekognition/types.rb', line 2170 class DetectLabelsImageForeground < Struct.new( :quality, :dominant_colors) SENSITIVE = [] include Aws::Structure end |