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

GeneralLabelsSettings

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

Contains filters for the object labels returned by DetectLabels. Filters can be inclusive, exclusive, or a combination of both and can be applied to individual l abels or entire label categories.

interface GeneralLabelsSettings {
LabelCategoryExclusionFilters?: string[] | null;
LabelCategoryInclusionFilters?: string[] | null;
LabelExclusionFilters?: string[] | null;
LabelInclusionFilters?: string[] | null;
}

§Properties

§
LabelCategoryExclusionFilters?: string[] | null
[src]

The label categories that should be excluded from the return from DetectLabels.

§
LabelCategoryInclusionFilters?: string[] | null
[src]

The label categories that should be included in the return from DetectLabels.

§
LabelExclusionFilters?: string[] | null
[src]

The labels that should be excluded from the return from DetectLabels.

§
LabelInclusionFilters?: string[] | null
[src]

The labels that should be included in the return from DetectLabels.