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

CelebrityRecognition

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

Information about a detected celebrity and the time the celebrity was detected in a stored video. For more information, see GetCelebrityRecognition in the Amazon Rekognition Developer Guide.

interface CelebrityRecognition {
Celebrity?: CelebrityDetail | null;
Timestamp?: number | null;
}

§Properties

§
Celebrity?: CelebrityDetail | null
[src]

Information about a recognized celebrity.

§
Timestamp?: number | null
[src]

The time, in milliseconds from the start of the video, that the celebrity was recognized. Note that Timestamp is not guaranteed to be accurate to the individual frame where the celebrity first appears.