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

AgeRange

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

Structure containing the estimated age range, in years, for a face.

Amazon Rekognition estimates an age range for faces detected in the input image. Estimated age ranges can overlap. A face of a 5-year-old might have an estimated range of 4-6, while the face of a 6-year-old might have an estimated range of 4-8.

interface AgeRange {
High?: number | null;
Low?: number | null;
}

§Properties

§
High?: number | null
[src]

The highest estimated age.

§
Low?: number | null
[src]

The lowest estimated age.