Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DetectLabelsImageProperties

import type { DetectLabelsImageProperties } from "https://aws-api.deno.dev/v0.4/services/rekognition.ts?docs=full";

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

interface DetectLabelsImageProperties {
Background?: DetectLabelsImageBackground | null;
DominantColors?: DominantColor[] | null;
Foreground?: DetectLabelsImageForeground | null;
Quality?: DetectLabelsImageQuality | null;
}

§Properties

§

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?: DominantColor[] | null
[src]

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

§

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.

§

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.