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

StartTextDetectionFilters

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

Set of optional parameters that let you set the criteria text must meet to be included in your response. WordFilter looks at a word's height, width and minimum confidence. RegionOfInterest lets you set a specific region of the screen to look for text in.

interface StartTextDetectionFilters {
RegionsOfInterest?: RegionOfInterest[] | null;
WordFilter?: DetectionFilter | null;
}

§Properties

§
RegionsOfInterest?: RegionOfInterest[] | null
[src]

Filter focusing on a certain area of the frame. Uses a BoundingBox object to set the region of the screen.

§
WordFilter?: DetectionFilter | null
[src]

Filters focusing on qualities of the text, such as confidence or size.