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

CompareFacesMatch

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

Provides information about a face in a target image that matches the source image face analyzed by CompareFaces. The Face property contains the bounding box of the face in the target image. The Similarity property is the confidence that the source image face matches the face in the bounding box.

interface CompareFacesMatch {
Face?: ComparedFace | null;
Similarity?: number | null;
}

§Properties

§
Face?: ComparedFace | null
[src]

Provides face metadata (bounding box and confidence that the bounding box actually contains a face).

§
Similarity?: number | null
[src]

Level of confidence that the faces match.