我有这个代码用于创建数据集合:
import boto3
def createCollection():
cliente = boto3.client('rekognition')
respuesta = cliente.create_collection (CollectionId = 'Fotos')
print (respuesta)
createCollection()
但我的问题是如何在此集合中添加项目。 请你帮助我好吗。 感谢。
答案 0 :(得分:1)
假设您尝试从本地文件系统向集合添加图像,可以使用index_faces()
方法执行此操作:
with open('image.png', 'rb') as image:
respuesta = cliente.index_faces(Image={'Bytes': image.read()}, CollectionId='Fotos')
print respuesta