amazonka-rekognition-2.0: Amazon Rekognition SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.Rekognition.Types.DetectLabelsImageProperties

Description

 
Synopsis

Documentation

data DetectLabelsImageProperties Source #

Information about the quality and dominant colors of an input image. Quality and color information is returned for the entire image, foreground, and background.

See: newDetectLabelsImageProperties smart constructor.

Constructors

DetectLabelsImageProperties' 

Fields

  • background :: Maybe 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.

  • dominantColors :: Maybe [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 :: Maybe 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 :: Maybe 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.

Instances

Instances details
FromJSON DetectLabelsImageProperties Source # 
Instance details

Defined in Amazonka.Rekognition.Types.DetectLabelsImageProperties

Generic DetectLabelsImageProperties Source # 
Instance details

Defined in Amazonka.Rekognition.Types.DetectLabelsImageProperties

Associated Types

type Rep DetectLabelsImageProperties :: Type -> Type #

Read DetectLabelsImageProperties Source # 
Instance details

Defined in Amazonka.Rekognition.Types.DetectLabelsImageProperties

Show DetectLabelsImageProperties Source # 
Instance details

Defined in Amazonka.Rekognition.Types.DetectLabelsImageProperties

NFData DetectLabelsImageProperties Source # 
Instance details

Defined in Amazonka.Rekognition.Types.DetectLabelsImageProperties

Eq DetectLabelsImageProperties Source # 
Instance details

Defined in Amazonka.Rekognition.Types.DetectLabelsImageProperties

Hashable DetectLabelsImageProperties Source # 
Instance details

Defined in Amazonka.Rekognition.Types.DetectLabelsImageProperties

type Rep DetectLabelsImageProperties Source # 
Instance details

Defined in Amazonka.Rekognition.Types.DetectLabelsImageProperties

type Rep DetectLabelsImageProperties = D1 ('MetaData "DetectLabelsImageProperties" "Amazonka.Rekognition.Types.DetectLabelsImageProperties" "amazonka-rekognition-2.0-EaCrS9R3rWADqefEZvOx5B" 'False) (C1 ('MetaCons "DetectLabelsImageProperties'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "background") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DetectLabelsImageBackground)) :*: S1 ('MetaSel ('Just "dominantColors") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [DominantColor]))) :*: (S1 ('MetaSel ('Just "foreground") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DetectLabelsImageForeground)) :*: S1 ('MetaSel ('Just "quality") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DetectLabelsImageQuality)))))

newDetectLabelsImageProperties :: DetectLabelsImageProperties Source #

Create a value of DetectLabelsImageProperties with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:background:DetectLabelsImageProperties', detectLabelsImageProperties_background - 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.

DetectLabelsImageProperties, detectLabelsImageProperties_dominantColors - 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).

$sel:foreground:DetectLabelsImageProperties', detectLabelsImageProperties_foreground - 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.

DetectLabelsImageProperties, detectLabelsImageProperties_quality - 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.

detectLabelsImageProperties_background :: Lens' DetectLabelsImageProperties (Maybe DetectLabelsImageBackground) Source #

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.

detectLabelsImageProperties_dominantColors :: Lens' DetectLabelsImageProperties (Maybe [DominantColor]) Source #

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).

detectLabelsImageProperties_foreground :: Lens' DetectLabelsImageProperties (Maybe DetectLabelsImageForeground) Source #

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.

detectLabelsImageProperties_quality :: Lens' DetectLabelsImageProperties (Maybe DetectLabelsImageQuality) Source #

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.