如何在亚马逊s3的集合中添加项目?

时间:2017-09-19 15:55:18

标签: python amazon-web-services amazon-s3 amazon boto3

我有这个代码用于创建数据集合:

import boto3

def createCollection():
        cliente = boto3.client('rekognition')
        respuesta = cliente.create_collection (CollectionId = 'Fotos')
        print (respuesta)

createCollection()

但我的问题是如何在此集合中添加项目。 请你帮助我好吗。 感谢。

1 个答案:

答案 0 :(得分:1)

假设您尝试从本地文件系统向集合添加图像,可以使用index_faces()方法执行此操作:

with open('image.png', 'rb') as image:
    respuesta = cliente.index_faces(Image={'Bytes': image.read()}, CollectionId='Fotos')
    print respuesta