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

GoogleCloudAiplatformV1SchemaPredictPredictionVideoObjectTrackingPredictionResultFrame

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

The fields xMin, xMax, yMin, and yMax refer to a bounding box, i.e. the rectangle over the video frame pinpointing the found AnnotationSpec. The coordinates are relative to the frame size, and the point 0,0 is in the top left of the frame.

interface GoogleCloudAiplatformV1SchemaPredictPredictionVideoObjectTrackingPredictionResultFrame {
timeOffset?: number;
xMax?: number;
xMin?: number;
yMax?: number;
yMin?: number;
}

§Properties

§
timeOffset?: number
[src]

A time (frame) of a video in which the object has been detected. Expressed as a number of seconds as measured from the start of the video, with fractions up to a microsecond precision, and with "s" appended at the end.

§
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.