问题描述
我可以使用IndexFacesRequest将图像添加到AWS Rekognition Collection.
I can manage to add an image to AWS Rekognition Collection using the IndexFacesRequest.
但是,为了提高准确性,我想添加同一用户的更多图像.如何让请求知道它是同一用户?
However, to improve accuracy I would like to add more images of the same user. How do I let the request know it is the same user?
推荐答案
Rekognition不允许您为单个面部ID提供多个面部图像.但是,您可以上传同一个人的多张面孔,并为其赋予相同的ExternalImageId.这是您通常用于将面部匹配与您的人员数据库相关联的ID.当您的应用稍后显示要匹配的人脸时,Rekognition将返回零个或多个人脸匹配.
Rekognition does not allow you to provide multiple face images for a single face ID. But you can upload multiple faces of the same person and give them the same ExternalImageId. That's the ID that you typically use to correlate a face match to your person database. When your app later presents a face for matching, Rekognition will return zero or more face matches.
这篇关于AWS Rekognition:添加同一个人的额外面孔的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!