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

Description

 
Synopsis

Documentation

data DetectLabelsImageBackground Source #

The background of the image with regard to image quality and dominant colors.

See: newDetectLabelsImageBackground smart constructor.

Constructors

DetectLabelsImageBackground' 

Fields

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

    The quality of the image background as defined by brightness and sharpness.

Instances

Instances details
FromJSON DetectLabelsImageBackground Source # 
Instance details

Defined in Amazonka.Rekognition.Types.DetectLabelsImageBackground

Generic DetectLabelsImageBackground Source # 
Instance details

Defined in Amazonka.Rekognition.Types.DetectLabelsImageBackground

Associated Types

type Rep DetectLabelsImageBackground :: Type -> Type #

Read DetectLabelsImageBackground Source # 
Instance details

Defined in Amazonka.Rekognition.Types.DetectLabelsImageBackground

Show DetectLabelsImageBackground Source # 
Instance details

Defined in Amazonka.Rekognition.Types.DetectLabelsImageBackground

NFData DetectLabelsImageBackground Source # 
Instance details

Defined in Amazonka.Rekognition.Types.DetectLabelsImageBackground

Eq DetectLabelsImageBackground Source # 
Instance details

Defined in Amazonka.Rekognition.Types.DetectLabelsImageBackground

Hashable DetectLabelsImageBackground Source # 
Instance details

Defined in Amazonka.Rekognition.Types.DetectLabelsImageBackground

type Rep DetectLabelsImageBackground Source # 
Instance details

Defined in Amazonka.Rekognition.Types.DetectLabelsImageBackground

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

newDetectLabelsImageBackground :: DetectLabelsImageBackground Source #

Create a value of DetectLabelsImageBackground 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:dominantColors:DetectLabelsImageBackground', detectLabelsImageBackground_dominantColors - 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).

$sel:quality:DetectLabelsImageBackground', detectLabelsImageBackground_quality - The quality of the image background as defined by brightness and sharpness.

detectLabelsImageBackground_dominantColors :: Lens' DetectLabelsImageBackground (Maybe [DominantColor]) Source #

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

detectLabelsImageBackground_quality :: Lens' DetectLabelsImageBackground (Maybe DetectLabelsImageQuality) Source #

The quality of the image background as defined by brightness and sharpness.