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

Celebrity

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

Provides information about a celebrity recognized by the "RecognizeCelebrities" operation.

interface Celebrity {
Face?: ComparedFace | null;
Id?: string | null;
KnownGender?: KnownGender | null;
MatchConfidence?: number | null;
Name?: string | null;
Urls?: string[] | null;
}

§Properties

§
Face?: ComparedFace | null
[src]

Provides information about the celebrity's face, such as its location on the image.

§
Id?: string | null
[src]

A unique identifier for the celebrity.

§
KnownGender?: KnownGender | null
[src]
§
MatchConfidence?: number | null
[src]

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

§
Name?: string | null
[src]

The name of the celebrity.

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

An array of URLs pointing to additional information about the celebrity. If there is no additional information about the celebrity, this list is empty.