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

Label

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

Structure containing details about the detected label, including the name, detected instances, parent labels, and level of confidence.

interface Label {
Confidence?: number | null;
Instances?: Instance[] | null;
Name?: string | null;
Parents?: Parent[] | null;
}

§Properties

§
Confidence?: number | null
[src]

Level of confidence.

§
Instances?: Instance[] | null
[src]

If Label represents an object, Instances contains the bounding boxes for each instance of the detected object. Bounding boxes are returned for common object labels such as people, cars, furniture, apparel or pets.

§
Name?: string | null
[src]

The name (label) of the object or scene.

§
Parents?: Parent[] | null
[src]

The parent labels for a label. The response includes all ancestor labels.