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

FaceDetail

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

Structure containing attributes of the face that the algorithm detected.

A FaceDetail object contains either the default facial attributes or all facial attributes. The default attributes are BoundingBox, Confidence, Landmarks, Pose, and Quality.

"GetFaceDetection" is the only Amazon Rekognition Video stored video operation that can return a FaceDetail object with all attributes. To specify which attributes to return, use the FaceAttributes input parameter for "StartFaceDetection". The following Amazon Rekognition Video operations return only the default attributes. The corresponding Start operations don't have a FaceAttributes input parameter:

  • GetCelebrityRecognition
  • GetPersonTracking
  • GetFaceSearch

The Amazon Rekognition Image "DetectFaces" and "IndexFaces" operations can return all facial attributes. To specify which attributes to return, use the Attributes input parameter for DetectFaces. For IndexFaces, use the DetectAttributes input parameter.

interface FaceDetail {
AgeRange?: AgeRange | null;
Beard?: Beard | null;
BoundingBox?: BoundingBox | null;
Confidence?: number | null;
Emotions?: Emotion[] | null;
Eyeglasses?: Eyeglasses | null;
EyesOpen?: EyeOpen | null;
Gender?: Gender | null;
Landmarks?: Landmark[] | null;
MouthOpen?: MouthOpen | null;
Mustache?: Mustache | null;
Pose?: Pose | null;
Quality?: ImageQuality | null;
Smile?: Smile | null;
Sunglasses?: Sunglasses | null;
}

§Properties

§
AgeRange?: AgeRange | null
[src]

The estimated age range, in years, for the face. Low represents the lowest estimated age and High represents the highest estimated age.

§
Beard?: Beard | null
[src]

Indicates whether or not the face has a beard, and the confidence level in the determination.

§
BoundingBox?: BoundingBox | null
[src]

Bounding box of the face. Default attribute.

§
Confidence?: number | null
[src]

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

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

The emotions that appear to be expressed on the face, and the confidence level in the determination. The API is only making a determination of the physical appearance of a person's face. It is not a determination of the person’s internal emotional state and should not be used in such a way. For example, a person pretending to have a sad face might not be sad emotionally.

§
Eyeglasses?: Eyeglasses | null
[src]

Indicates whether or not the face is wearing eye glasses, and the confidence level in the determination.

§
EyesOpen?: EyeOpen | null
[src]

Indicates whether or not the eyes on the face are open, and the confidence level in the determination.

§
Gender?: Gender | null
[src]

The predicted gender of a detected face.

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

Indicates the location of landmarks on the face. Default attribute.

§
MouthOpen?: MouthOpen | null
[src]

Indicates whether or not the mouth on the face is open, and the confidence level in the determination.

§
Mustache?: Mustache | null
[src]

Indicates whether or not the face has a mustache, and the confidence level in the determination.

§
Pose?: Pose | null
[src]

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

§
Quality?: ImageQuality | null
[src]

Identifies image brightness and sharpness. Default attribute.

§
Smile?: Smile | null
[src]

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

§
Sunglasses?: Sunglasses | null
[src]

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