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

Face

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

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

interface Face {
BoundingBox?: BoundingBox | null;
Confidence?: number | null;
ExternalImageId?: string | null;
FaceId?: string | null;
ImageId?: string | null;
IndexFacesModelVersion?: string | null;
}

§Properties

§
BoundingBox?: BoundingBox | null
[src]

Bounding box of the face.

§
Confidence?: number | null
[src]

Confidence level that the bounding box contains a face (and not a different object such as a tree).

§
ExternalImageId?: string | null
[src]

Identifier that you assign to all the faces in the input image.

§
FaceId?: string | null
[src]

Unique identifier that Amazon Rekognition assigns to the face.

§
ImageId?: string | null
[src]

Unique identifier that Amazon Rekognition assigns to the input image.

§
IndexFacesModelVersion?: string | null
[src]

The version of the face detect and storage model that was used when indexing the face vector.