Reputation: 224
I am trying to implement AWS Rekognition. Be default API allows only one image. I want to upload multiple image for face recognition. Is it possible?
Upvotes: 1
Views: 471
Reputation: 892
No , it is simply not possible. You can only provide a single image as an input to rekognition API's. The only possible way to use rekognition with multiple images is to iterate over each image and call API for each image.
Upvotes: 1