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.3/services/textract.ts?docs=full";

Information about where the following items are located on a document page: detected page, text, key-value pairs, tables, table cells, and selection elements.

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

§Properties

§
BoundingBox?: BoundingBox | null
[src]

An axis-aligned coarse representation of the location of the recognized item on the document page.

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

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