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

GoogleCloudAiplatformV1SchemaPredictParamsVideoObjectTrackingPredictionParams

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

Prediction model parameters for Video Object Tracking.

interface GoogleCloudAiplatformV1SchemaPredictParamsVideoObjectTrackingPredictionParams {
confidenceThreshold?: number;
maxPredictions?: number;
minBoundingBoxSize?: number;
}

§Properties

§
confidenceThreshold?: number
[src]

The Model only returns predictions with at least this confidence score. Default value is 0.0

§
maxPredictions?: number
[src]

The model only returns up to that many top, by confidence score, predictions per frame of the video. If this number is very high, the Model may return fewer predictions per frame. Default value is 50.

§
minBoundingBoxSize?: number
[src]

Only bounding boxes with shortest edge at least that long as a relative value of video frame size are returned. Default value is 0.0.