interface SearchFacesByImageResponse {
    FaceMatches?: FaceMatch[];
    FaceModelVersion?: string;
    SearchedFaceBoundingBox?: BoundingBox;
    SearchedFaceConfidence?: number;
}

Hierarchy (view full)

Properties

FaceMatches?: FaceMatch[]

An array of faces that match the input face, along with the confidence in the match.

FaceModelVersion?: string

Version number of the face detection model associated with the input collection (CollectionId).

SearchedFaceBoundingBox?: BoundingBox

The bounding box around the face in the input image that Amazon Rekognition used for the search.

SearchedFaceConfidence?: number

The level of confidence that the searchedFaceBoundingBox, contains a face.