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

PersonDetail

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

Details about a person detected in a video analysis request.

interface PersonDetail {
BoundingBox?: BoundingBox | null;
Face?: FaceDetail | null;
Index?: number | null;
}

§Properties

§
BoundingBox?: BoundingBox | null
[src]

Bounding box around the detected person.

§
Face?: FaceDetail | null
[src]

Face details for the detected person.

§
Index?: number | null
[src]

Identifier for the person detected person within a video. Use to keep track of the person throughout the video. The identifier is not stored by Amazon Rekognition.