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

FaceDetection

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

Information about a face detected in a video analysis request and the time the face was detected in the video.

interface FaceDetection {
Face?: FaceDetail | null;
Timestamp?: number | null;
}

§Properties

§
Face?: FaceDetail | null
[src]

The face properties for the detected face.

§
Timestamp?: number | null
[src]

Time, in milliseconds from the start of the video, that the face was detected. Note that Timestamp is not guaranteed to be accurate to the individual frame where the face first appears.