GoogleCloudAiplatformV1SchemaPredictPredictionImageObjectDetectionPredictionResult
import type { GoogleCloudAiplatformV1SchemaPredictPredictionImageObjectDetectionPredictionResult } from "https://googleapis.deno.dev/v1/aiplatform:v1.ts";Prediction output format for Image Object Detection.
interface GoogleCloudAiplatformV1SchemaPredictPredictionImageObjectDetectionPredictionResult {
bboxes?: any[][];
confidences?: number[];
displayNames?: string[];
ids?: bigint[];
}§Properties
§
bboxes?: any[][]
[src]Bounding boxes, i.e. the rectangles over the image, that pinpoint the
found AnnotationSpecs. Given in order that matches the IDs. Each bounding
box is an array of 4 numbers xMin, xMax, yMin, and yMax, which
represent the extremal coordinates of the box. They are relative to the
image size, and the point 0,0 is in the top left of the image.
§
confidences?: number[]
[src]The Model's confidences in correctness of the predicted IDs, higher value means higher confidence. Order matches the Ids.