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

CelebrityDetail

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

Information about a recognized celebrity.

interface CelebrityDetail {
BoundingBox?: BoundingBox | null;
Confidence?: number | null;
Face?: FaceDetail | null;
Id?: string | null;
KnownGender?: KnownGender | null;
Name?: string | null;
Urls?: string[] | null;
}

§Properties

§
BoundingBox?: BoundingBox | null
[src]

Bounding box around the body of a celebrity.

§
Confidence?: number | null
[src]

The confidence, in percentage, that Amazon Rekognition has that the recognized face is the celebrity.

§
Face?: FaceDetail | null
[src]

Face details for the recognized celebrity.

§
Id?: string | null
[src]

The unique identifier for the celebrity.

§
KnownGender?: KnownGender | null
[src]

Retrieves the known gender for the celebrity.

§
Name?: string | null
[src]

The name of the celebrity.

§
Urls?: string[] | null
[src]

An array of URLs pointing to additional celebrity information.