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

CustomLabel

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

A custom label detected in an image by a call to "DetectCustomLabels".

interface CustomLabel {
Confidence?: number | null;
Geometry?: Geometry | null;
Name?: string | null;
}

§Properties

§
Confidence?: number | null
[src]

The confidence that the model has in the detection of the custom label. The range is 0-100. A higher value indicates a higher confidence.

§
Geometry?: Geometry | null
[src]

The location of the detected object on the image that corresponds to the custom label. Includes an axis aligned coarse bounding box surrounding the object and a finer grain polygon for more accurate spatial information.

§
Name?: string | null
[src]

The name of the custom label.