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

Geometry

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

Information about where an object ("DetectCustomLabels") or text ("DetectText") is located on an image.

interface Geometry {
BoundingBox?: BoundingBox | null;
Polygon?: Point[] | null;
}

§Properties

§
BoundingBox?: BoundingBox | null
[src]

An axis-aligned coarse representation of the detected item's location on the image.

§
Polygon?: Point[] | null
[src]

Within the bounding box, a fine-grained polygon around the detected item.