gpt4 book ai didi

python - 如何使用存储在 Google Cloud Storage 中的图像调用 Google Vision API?

转载 作者:太空狗 更新时间:2023-10-30 00:54:43 26 4
gpt4 key购买 nike

我在 GCS 上有一堆图片,想知道它们是什么?

最佳答案

对于 GCS 集成 - 我将修改上面的主体以通过将内容属性替换为 gcs_image_uri 来指向 GCS 位置

    batch_request = [{
'image': {
'source': {
'gcs_image_uri': "gs://bucket_name/object_path"
}
},
'features': [{
'type': 'LANDMARK_DETECTION',
'maxResults': max_results,
}]
}]
service = get_vision_service()
request = service.images().annotate(body={
'requests': batch_request,
})
response = request.execute()

关于python - 如何使用存储在 Google Cloud Storage 中的图像调用 Google Vision API?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35214673/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com