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

NormalizedVertex

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

A vertex represents a 2D point in the image. NOTE: the normalized vertex coordinates are relative to the original image and range from 0 to 1.

interface NormalizedVertex {
x?: number;
y?: number;
}

§Properties

§
x?: number
[src]

X coordinate.

§
y?: number
[src]

Y coordinate.