AWSRekognitionDetectLabelsImageProperties
Objective-C
@interface AWSRekognitionDetectLabelsImageProperties
Swift
class AWSRekognitionDetectLabelsImageProperties
Information about the quality and dominant colors of an input image. Quality and color information is returned for the entire image, foreground, and 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.
Declaration
Objective-C
@property (nonatomic, strong) AWSRekognitionDetectLabelsImageBackground *_Nullable background;
Swift
var background: AWSRekognitionDetectLabelsImageBackground? { get set }
-
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).
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSRekognitionDominantColor *> *_Nullable dominantColors;
Swift
var dominantColors: [AWSRekognitionDominantColor]? { get set }
-
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.
Declaration
Objective-C
@property (nonatomic, strong) AWSRekognitionDetectLabelsImageForeground *_Nullable foreground;
Swift
var foreground: AWSRekognitionDetectLabelsImageForeground? { get set }
-
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.
Declaration
Objective-C
@property (nonatomic, strong) AWSRekognitionDetectLabelsImageQuality *_Nullable quality;
Swift
var quality: AWSRekognitionDetectLabelsImageQuality? { get set }