Class: Aws::Rekognition::Types::DetectLabelsImageProperties
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::DetectLabelsImageProperties
- Defined in:
- gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb
Overview
Information about the quality and dominant colors of an input image. Quality and color information is returned for the entire image, foreground, and background.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#background ⇒ Types::DetectLabelsImageBackground
Information about the properties of an image’s background, including the background’s quality and dominant colors, including the quality and dominant colors of the image.
-
#dominant_colors ⇒ Array<Types::DominantColor>
Information about the dominant colors found in an image, described with RGB values, CSS color name, simplified color name, and PixelPercentage (the percentage of image pixels that have a particular color).
-
#foreground ⇒ Types::DetectLabelsImageForeground
Information about the properties of an image’s foreground, including the foreground’s quality and dominant colors, including the quality and dominant colors of the image.
-
#quality ⇒ Types::DetectLabelsImageQuality
Information about the quality of the image foreground as defined by brightness, sharpness, and contrast.
Instance Attribute Details
#background ⇒ Types::DetectLabelsImageBackground
Information about the properties of an image’s background, including the background’s quality and dominant colors, including the quality and dominant colors of the image.
1806 1807 1808 1809 1810 1811 1812 1813 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 1806 class DetectLabelsImageProperties < Struct.new( :quality, :dominant_colors, :foreground, :background) SENSITIVE = [] include Aws::Structure end |
#dominant_colors ⇒ Array<Types::DominantColor>
Information about the dominant colors found in an image, described with RGB values, CSS color name, simplified color name, and PixelPercentage (the percentage of image pixels that have a particular color).
1806 1807 1808 1809 1810 1811 1812 1813 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 1806 class DetectLabelsImageProperties < Struct.new( :quality, :dominant_colors, :foreground, :background) SENSITIVE = [] include Aws::Structure end |
#foreground ⇒ Types::DetectLabelsImageForeground
Information about the properties of an image’s foreground, including the foreground’s quality and dominant colors, including the quality and dominant colors of the image.
1806 1807 1808 1809 1810 1811 1812 1813 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 1806 class DetectLabelsImageProperties < Struct.new( :quality, :dominant_colors, :foreground, :background) SENSITIVE = [] include Aws::Structure end |
#quality ⇒ Types::DetectLabelsImageQuality
Information about the quality of the image foreground as defined by brightness, sharpness, and contrast. The higher the value the greater the brightness, sharpness, and contrast respectively.
1806 1807 1808 1809 1810 1811 1812 1813 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 1806 class DetectLabelsImageProperties < Struct.new( :quality, :dominant_colors, :foreground, :background) SENSITIVE = [] include Aws::Structure end |