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

LabelDetection

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

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

interface LabelDetection {
DurationMillis?: number | null;
EndTimestampMillis?: number | null;
Label?: Label | null;
StartTimestampMillis?: number | null;
Timestamp?: number | null;
}

§Properties

§
DurationMillis?: number | null
[src]

The time duration of a segment in milliseconds, I.e. time elapsed from StartTimestampMillis to EndTimestampMillis.

§
EndTimestampMillis?: number | null
[src]

The time in milliseconds defining the end of the timeline segment containing a continuously detected label.

§
Label?: Label | null
[src]

Details about the detected label.

§
StartTimestampMillis?: number | null
[src]

The time in milliseconds defining the start of the timeline segment containing a continuously detected label.

§
Timestamp?: number | null
[src]

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