GoogleCloudAiplatformV1SchemaVertex
import type { GoogleCloudAiplatformV1SchemaVertex } from "https://googleapis.deno.dev/v1/aiplatform:v1.ts";Represents a 2D point in the image. Vertex coordinates are normalized to be relative to the original image dimensions and range from 0 to 1. The origin of the coordinate system (0,0) is the top-left corner of the image. x increases to the right, and y increases to the bottom.
interface GoogleCloudAiplatformV1SchemaVertex {
x?: number;
y?: number;
}