I have the following problem, in a company they register with facial recognition and these faces are indexed in a collection of AWS Rekognition, there are often events and to speed up the registration of the event they want to take a single photo and have it recognize the faces and search for them in the collection and record the event attendance of each person etc, etc, ect.
const { FaceDetails } = await this.rekognition.detectFaces({
Image: {
Bytes: imageBuffer
}
});
The problem with this code is that if it detects all the faces but does not give me the IDs of the faces, how can I get the ID of the face and see if it is in the collection? or what strategy should I follow?
The code only returns the attributes and information of the faces, but I don't know how to get something to help me search the collection
According to the
DetectFaces
documentation:You will notice that there is no mention of Face Collections for this API call.
Instead, if you want to find a face in a Face Collection, you should use
SearchFacesByImage
: