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

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;
}

§Properties

§
x?: number
[src]

X coordinate of the vertex, normalized to [0.0, 1.0].

§
y?: number
[src]

Y coordinate of the vertex, normalized to [0.0, 1.0].