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

XPSTrackMetricsEntry

import type { XPSTrackMetricsEntry } from "https://googleapis.deno.dev/v1/language:v2.ts";

Track matching model metrics for a single track match threshold and multiple label match confidence thresholds. Next tag: 6.

interface XPSTrackMetricsEntry {
confidenceMetricsEntries?: XPSTrackMetricsEntryConfidenceMetricsEntry[];
iouThreshold?: number;
meanBoundingBoxIou?: number;
meanMismatchRate?: number;
meanTrackingAveragePrecision?: number;
}

§Properties

§

Output only. Metrics for each label-match confidence_threshold from 0.05,0.10,...,0.95,0.96,0.97,0.98,0.99. Precision-recall curve is derived from them.

§
iouThreshold?: number
[src]

Output only. The intersection-over-union threshold value between bounding boxes across frames used to compute this metric entry.

§
meanBoundingBoxIou?: number
[src]

Output only. The mean bounding box iou over all confidence thresholds.

§
meanMismatchRate?: number
[src]

Output only. The mean mismatch rate over all confidence thresholds.

§
meanTrackingAveragePrecision?: number
[src]

Output only. The mean average precision over all confidence thresholds.