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

GoogleCloudVisionV1p3beta1Position

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

A 3D position in the image, used primarily for Face detection landmarks. A valid Position must have both x and y coordinates. The position coordinates are in the same scale as the original image.

interface GoogleCloudVisionV1p3beta1Position {
x?: number;
y?: number;
z?: number;
}

§Properties

§
x?: number
[src]

X coordinate.

§
y?: number
[src]

Y coordinate.

§
z?: number
[src]

Z coordinate (or depth).