如何在 amazon s3 的集合中添加项目?

How to add an item in a collection in amazon s3?

我有创建数据集合的代码:

import boto3

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

createCollection()

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

假设您正尝试从本地文件系统将图像添加到集合中,您可以使用 index_faces() 方法:

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