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

XPSTrackMetricsEntryConfidenceMetricsEntry

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

Metrics for a single confidence threshold. Next tag: 6.

interface XPSTrackMetricsEntryConfidenceMetricsEntry {
boundingBoxIou?: number;
confidenceThreshold?: number;
mismatchRate?: number;
trackingPrecision?: number;
trackingRecall?: number;
}

§Properties

§
boundingBoxIou?: number
[src]

Output only. Bounding box intersection-over-union precision. Measures how well the bounding boxes overlap between each other (e.g. complete overlap or just barely above iou_threshold).

§
confidenceThreshold?: number
[src]

Output only. The confidence threshold value used to compute the metrics.

§
mismatchRate?: number
[src]

Output only. Mismatch rate, which measures the tracking consistency, i.e. correctness of instance ID continuity.

§
trackingPrecision?: number
[src]

Output only. Tracking precision.

§
trackingRecall?: number
[src]

Output only. Tracking recall.