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

Landmark

import type { Landmark } from "https://aws-api.deno.dev/v0.4/services/rekognition.ts?docs=full";

Indicates the location of the landmark on the face.

interface Landmark {
Type?: LandmarkType | null;
X?: number | null;
Y?: number | null;
}

§Properties

§
Type?: LandmarkType | null
[src]

Type of landmark.

§
X?: number | null
[src]

The x-coordinate of the landmark expressed as a ratio of the width of the image. The x-coordinate is measured from the left-side of the image. For example, if the image is 700 pixels wide and the x-coordinate of the landmark is at 350 pixels, this value is 0.5.

§
Y?: number | null
[src]

The y-coordinate of the landmark expressed as a ratio of the height of the image. The y-coordinate is measured from the top of the image. For example, if the image height is 200 pixels and the y-coordinate of the landmark is at 50 pixels, this value is 0.25.