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

ImageQuality

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

Identifies face image brightness and sharpness.

interface ImageQuality {
Brightness?: number | null;
Sharpness?: number | null;
}

§Properties

§
Brightness?: number | null
[src]

Value representing brightness of the face. The service returns a value between 0 and 100 (inclusive). A higher value indicates a brighter face image.

§
Sharpness?: number | null
[src]

Value representing sharpness of the face. The service returns a value between 0 and 100 (inclusive). A higher value indicates a sharper face image.