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

DetectionFilter

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

A set of parameters that allow you to filter out certain results from your returned results.

interface DetectionFilter {
MinBoundingBoxHeight?: number | null;
MinBoundingBoxWidth?: number | null;
MinConfidence?: number | null;
}

§Properties

§
MinBoundingBoxHeight?: number | null
[src]

Sets the minimum height of the word bounding box. Words with bounding box heights lesser than this value will be excluded from the result. Value is relative to the video frame height.

§
MinBoundingBoxWidth?: number | null
[src]

Sets the minimum width of the word bounding box. Words with bounding boxes widths lesser than this value will be excluded from the result. Value is relative to the video frame width.

§
MinConfidence?: number | null
[src]

Sets the confidence of word detection. Words with detection confidence below this will be excluded from the result. Values should be between 0 and 100. The default MinConfidence is 80.