1安装百度api
pip3 install baidu-aip
2代码
from aip import AipImageClassify
""" 你的 APPID AK SK """
APP_ID = '你的APP_ID'
API_KEY = '你的API_KEY'
SECRET_KEY = '你的SECRET_KEY'
client = AipImageClassify(APP_ID, API_KEY, SECRET_KEY)
def get_file_content(filePath):
with open(filePath, 'rb') as fp:
return fp.read()
image = get_file_content('example.jpg')
""" 如果有可选参数 """
options = {}
options["baike_num"] = 5
""" 带参数调用通用物体识别 """
result = client.advancedGeneral(image, options)
print(result)
这里需要在程序文件目录里带一张名字叫example.jpg的照片,是用来检测它的图像的。
3运行结果