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

GoogleCloudAiplatformV1SchemaImageBoundingBoxAnnotation

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

Annotation details specific to image object detection.

interface GoogleCloudAiplatformV1SchemaImageBoundingBoxAnnotation {
annotationSpecId?: string;
displayName?: string;
xMax?: number;
xMin?: number;
yMax?: number;
yMin?: number;
}

§Properties

§
annotationSpecId?: string
[src]

The resource Id of the AnnotationSpec that this Annotation pertains to.

§
displayName?: string
[src]

The display name of the AnnotationSpec that this Annotation pertains to.

§
xMax?: number
[src]

The rightmost coordinate of the bounding box.

§
xMin?: number
[src]

The leftmost coordinate of the bounding box.

§
yMax?: number
[src]

The bottommost coordinate of the bounding box.

§
yMin?: number
[src]

The topmost coordinate of the bounding box.