Python调用百度识图API可以用百度提供的Python SDK进行操作,下面将详细讲解如何调用百度识图API。
具体操作流程如下:
百度提供了Python SDK供开发者使用,可以通过执行以下命令进行安装:
pip install baidu-aip
选择适合自己的图片识别接口(单个URL或多个URL,或者上传本地图片文件),调用client
对象的相应方法发送请求,如下所示:
from aip import AipImageClassify
APP_ID = ''
API_KEY = ''
SECRET_KEY = ''
client = AipImageClassify(APP_ID, API_KEY, SECRET_KEY)
url = "https://www.example.com/example.jpg"
options = {}
options["top_num"] = 3
result = client.advancedGeneralUrl(url, options)
print(result)
from aip import AipImageClassify
APP_ID = ''
API_KEY = ''
SECRET_KEY = ''
client = AipImageClassify(APP_ID, API_KEY, SECRET_KEY)
filename = 'example.jpg'
with open(filename, 'rb') as f:
image = f.read()
options = {}
options['top_num'] = 3
result = client.advancedGeneral(image, options)
print(result)
详细的接口调用说明可以参考官方文档。
以上就是Python调用百度识图API的详细攻略,如果你需要使用其他接口,只需要调用对应的SDK即可。