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

ComparedSourceImageFace

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

Type that describes the face Amazon Rekognition chose to compare with the faces in the target. This contains a bounding box for the selected face and confidence level that the bounding box contains a face. Note that Amazon Rekognition selects the largest face in the source image for this comparison.

interface ComparedSourceImageFace {
BoundingBox?: BoundingBox | null;
Confidence?: number | null;
}

§Properties

§
BoundingBox?: BoundingBox | null
[src]

Bounding box of the face.

§
Confidence?: number | null
[src]

Confidence level that the selected bounding box contains a face.