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

GoogleCloudAiplatformV1SchemaModelevaluationMetricsVideoObjectTrackingMetrics

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

Model evaluation metrics for video object tracking problems. Evaluates prediction quality of both labeled bounding boxes and labeled tracks (i.e. series of bounding boxes sharing same label and instance ID).

interface GoogleCloudAiplatformV1SchemaModelevaluationMetricsVideoObjectTrackingMetrics {
boundingBoxMeanAveragePrecision?: number;
evaluatedBoundingBoxCount?: number;
evaluatedFrameCount?: number;
evaluatedTrackCount?: number;
trackMeanAveragePrecision?: number;
trackMeanBoundingBoxIou?: number;
trackMeanMismatchRate?: number;
}

§Properties

§
boundingBoxMeanAveragePrecision?: number
[src]

The single metric for bounding boxes evaluation: the meanAveragePrecision averaged over all boundingBoxMetrics.

§

The bounding boxes match metrics for each intersection-over-union threshold 0.05,0.10,...,0.95,0.96,0.97,0.98,0.99 and each label confidence threshold 0.05,0.10,...,0.95,0.96,0.97,0.98,0.99 pair.

§
evaluatedBoundingBoxCount?: number
[src]

UNIMPLEMENTED. The total number of bounding boxes (i.e. summed over all frames) the ground truth used to create this evaluation had.

§
evaluatedFrameCount?: number
[src]

UNIMPLEMENTED. The number of video frames used to create this evaluation.

§
evaluatedTrackCount?: number
[src]

UNIMPLEMENTED. The total number of tracks (i.e. as seen across all frames) the ground truth used to create this evaluation had.

§
trackMeanAveragePrecision?: number
[src]

UNIMPLEMENTED. The single metric for tracks accuracy evaluation: the meanAveragePrecision averaged over all trackMetrics.

§
trackMeanBoundingBoxIou?: number
[src]

UNIMPLEMENTED. The single metric for tracks bounding box iou evaluation: the meanBoundingBoxIou averaged over all trackMetrics.

§
trackMeanMismatchRate?: number
[src]

UNIMPLEMENTED. The single metric for tracking consistency evaluation: the meanMismatchRate averaged over all trackMetrics.

§

UNIMPLEMENTED. The tracks match metrics for each intersection-over-union threshold 0.05,0.10,...,0.95,0.96,0.97,0.98,0.99 and each label confidence threshold 0.05,0.10,...,0.95,0.96,0.97,0.98,0.99 pair.