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

GoogleCloudAiplatformV1SchemaPredictPredictionVideoObjectTrackingPredictionResult

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

Prediction output format for Video Object Tracking.

interface GoogleCloudAiplatformV1SchemaPredictPredictionVideoObjectTrackingPredictionResult {
confidence?: number;
displayName?: string;
id?: string;
timeSegmentEnd?: number;
timeSegmentStart?: number;
}

§Properties

§
confidence?: number
[src]

The Model's confidence in correction of this prediction, higher value means higher confidence.

§
displayName?: string
[src]

The display name of the AnnotationSpec that had been identified.

§

All of the frames of the video in which a single object instance has been detected. The bounding boxes in the frames identify the same object.

§
id?: string
[src]

The resource ID of the AnnotationSpec that had been identified.

§
timeSegmentEnd?: number
[src]

The end, inclusive, of the video's time segment in which the object instance 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.

§
timeSegmentStart?: number
[src]

The beginning, inclusive, of the video's time segment in which the object instance 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.