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

GoogleCloudAiplatformV1SchemaVideoObjectTrackingAnnotation

import type { GoogleCloudAiplatformV1SchemaVideoObjectTrackingAnnotation } from "https://googleapis.deno.dev/v1/aiplatform:v1.ts";

Annotation details specific to video object tracking.

interface GoogleCloudAiplatformV1SchemaVideoObjectTrackingAnnotation {
annotationSpecId?: string;
displayName?: string;
instanceId?: bigint;
timeOffset?: number;
xMax?: number;
xMin?: number;
yMax?: number;
yMin?: number;
}

§Properties

§
annotationSpecId?: string
[src]

The resource Id of the AnnotationSpec that this Annotation pertains to.

§
displayName?: string
[src]

The display name of the AnnotationSpec that this Annotation pertains to.

§
instanceId?: bigint
[src]

The instance of the object, expressed as a positive integer. Used to track the same object across different frames.

§
timeOffset?: number
[src]

A time (frame) of a video to which this annotation pertains. Represented as the duration since the video's start.

§
xMax?: number
[src]

The rightmost coordinate of the bounding box.

§
xMin?: number
[src]

The leftmost coordinate of the bounding box.

§
yMax?: number
[src]

The bottommost coordinate of the bounding box.

§
yMin?: number
[src]

The topmost coordinate of the bounding box.