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

ComparedFace

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

Provides face metadata for target image faces that are analyzed by CompareFaces and RecognizeCelebrities.

interface ComparedFace {
BoundingBox?: BoundingBox | null;
Confidence?: number | null;
Emotions?: Emotion[] | null;
Landmarks?: Landmark[] | null;
Pose?: Pose | null;
Quality?: ImageQuality | null;
Smile?: Smile | null;
}

§Properties

§
BoundingBox?: BoundingBox | null
[src]

Bounding box of the face.

§
Confidence?: number | null
[src]

Level of confidence that what the bounding box contains is a face.

§
Emotions?: Emotion[] | null
[src]

The emotions that appear to be expressed on the face, and the confidence level in the determination. Valid values include "Happy", "Sad", "Angry", "Confused", "Disgusted", "Surprised", "Calm", "Unknown", and "Fear".

§
Landmarks?: Landmark[] | null
[src]

An array of facial landmarks.

§
Pose?: Pose | null
[src]

Indicates the pose of the face as determined by its pitch, roll, and yaw.

§
Quality?: ImageQuality | null
[src]

Identifies face image brightness and sharpness.

§
Smile?: Smile | null
[src]

Indicates whether or not the face is smiling, and the confidence level in the determination.