AWS Rekognition - 如何索引属于同一张脸的多个图像?
AWS Rekognition - How to index multiple images belonging to the same face?
此文档 - https://docs.aws.amazon.com/rekognition/latest/dg/recommendations-facial-input-images.html 建议直接索引一个人的 5 张面孔。
但 indexFaces 一次只取一张图像。
在索引第一张图片后,在索引第二张图片时,如何告诉 rekognition 它属于同一个人?
如何告诉 rekognition 这 5 张图像属于同一个人?
To associate faces with an image, specify an image ID in the ExternalImageId request parameter. The image ID can be the file name or another ID that you create.
基本上你可以上传同一个人的多张脸并给他们相同的 ExternalImageId,这样所有这些图像都“指向”同一个人
此文档 - https://docs.aws.amazon.com/rekognition/latest/dg/recommendations-facial-input-images.html 建议直接索引一个人的 5 张面孔。
但 indexFaces 一次只取一张图像。
在索引第一张图片后,在索引第二张图片时,如何告诉 rekognition 它属于同一个人?
如何告诉 rekognition 这 5 张图像属于同一个人?
To associate faces with an image, specify an image ID in the ExternalImageId request parameter. The image ID can be the file name or another ID that you create.
基本上你可以上传同一个人的多张脸并给他们相同的 ExternalImageId,这样所有这些图像都“指向”同一个人