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

DetectTextFilters

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

A set of optional parameters that you can use to set the criteria that the 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 image to look for text in.

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

§Properties

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

A Filter focusing on a certain area of the image. Uses a BoundingBox object to set the region of the image.

§
WordFilter?: DetectionFilter | null
[src]