Information about a recognized celebrity.

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

Properties

BoundingBox?: BoundingBox

Bounding box around the body of a celebrity.

Confidence?: number

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

Face?: FaceDetail

Face details for the recognized celebrity.

Id?: string

The unique identifier for the celebrity.

KnownGender?: KnownGender

Retrieves the known gender for the celebrity.

Name?: string

The name of the celebrity.

Urls?: string[]

An array of URLs pointing to additional celebrity information.