The input for SearchFacesCommand.

interface SearchFacesCommandInput {
    CollectionId: undefined | string;
    FaceId: undefined | string;
    FaceMatchThreshold?: number;
    MaxFaces?: number;
}

Hierarchy (view full)

Properties

CollectionId: undefined | string

ID of the collection the face belongs to.

FaceId: undefined | string

ID of a face to find matches for in the collection.

FaceMatchThreshold?: number

Optional value specifying the minimum confidence in the face match to return. For example, don't return any matches where confidence in matches is less than 70%. The default value is 80%.

MaxFaces?: number

Maximum number of faces to return. The operation returns the maximum number of faces with the highest confidence in the match.