目录一、接入指南1.注册2.登录3.创建应用二、安装接口模型三、编写python代码四、识别结果
一、接入指南
若想利用百度AI开放平台进行软件开发,首先应成为百度AI开放平台的开发者。在此,以图文形式详细介绍普通开发人员如何接入百度AI开放平台。
1.注册
请在百度官方网站 https://passport.baidu.com/v2/?reg 注册账号。
2.登录
请在百度云官方网站 https://login.bce.baidu.com 登录。
3.创建应用
选择产品服务里的文字识别,点击创建应用
输入应用名称和应用描述,点击立即创建,创建完成。
创建后可以返回应用列表,可以看到里面有AppID、API Key、Secret Key三个参数,将三个参数记录以备在项目中使用。
二、安装接口模型
下载baidu-aip这个库,可以直接使用pip下载:pip install baidu-aip 或者进入https://ai.baidu.com/sdk下载对应的SDK
三、编写python代码
from aip import AipOcr
AppID = '19650***'
API_Key = '5W4GVLgzRviMf4h3gGAoO***'
Secret_Key = 'hDEKZ0krLclgZeEIRRs1vA2H4jg***'
client = AipOcr(AppID, API_Key, Secret_Key)
def get_file_content(filePath):
with open(filePath, 'rb') as f:
return f.read()
image = get_file_content('pin.jpg')
res=client.basicGeneral(image)
for item in res['words_result']:
print(item['words'])