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

FaceMatch

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

Provides face metadata. In addition, it also provides the confidence in the match of this face with the input face.

interface FaceMatch {
Face?: Face | null;
Similarity?: number | null;
}

§Properties

§
Face?: Face | null
[src]

Describes the face properties such as the bounding box, face ID, image ID of the source image, and external image ID that you assigned.

§
Similarity?: number | null
[src]

Confidence in the match of this face with the input face.