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

DetectLabelsImageQuality

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

The quality of an image provided for label detection, with regard to brightness, sharpness, and contrast.

interface DetectLabelsImageQuality {
Brightness?: number | null;
Contrast?: number | null;
Sharpness?: number | null;
}

§Properties

§
Brightness?: number | null
[src]

The brightness of an image provided for label detection.

§
Contrast?: number | null
[src]

The contrast of an image provided for label detection.

§
Sharpness?: number | null
[src]

The sharpness of an image provided for label detection.