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

DetectAnomalyResult

import type { DetectAnomalyResult } from "https://aws-api.deno.dev/v0.3/services/lookoutvision.ts?docs=full";

The prediction results from a call to "DetectAnomalies".

interface DetectAnomalyResult {
Confidence?: number | null;
IsAnomalous?: boolean | null;
Source?: ImageSource | null;
}

§Properties

§
Confidence?: number | null
[src]

The confidence that Amazon Lookout for Vision has in the accuracy of the prediction.

§
IsAnomalous?: boolean | null
[src]

True if the image contains an anomaly, otherwise false.

§
Source?: ImageSource | null
[src]

The source of the image that was analyzed. direct means that the images was supplied from the local computer. No other values are supported.