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

PersonDetection

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

Details and path tracking information for a single time a person's path is tracked in a video. Amazon Rekognition operations that track people's paths return an array of PersonDetection objects with elements for each time a person's path is tracked in a video.

For more information, see GetPersonTracking in the Amazon Rekognition Developer Guide.

interface PersonDetection {
Person?: PersonDetail | null;
Timestamp?: number | null;
}

§Properties

§
Person?: PersonDetail | null
[src]

Details about a person whose path was tracked in a video.

§
Timestamp?: number | null
[src]

The time, in milliseconds from the start of the video, that the person's path was tracked. Note that Timestamp is not guaranteed to be accurate to the individual frame where the person's path first appears.