其他分享
首页 > 其他分享> > 百度aip识别文字

百度aip识别文字

作者:互联网

#baidu_aip人工接口
from aip import AipOcr

""" 你的 APPID AK SK """
APP_ID = '2222222'
API_KEY = 'gdjgutg.hkbyfvh.'
SECRET_KEY = 'h.bljgk.ugt..iujh/bn.jm:Ojkjg,gc '

#ocr客户端对象
client = AipOcr(APP_ID, API_KEY, SECRET_KEY)

#读取文件
with open(r"","rb") as f:
img=f.read()

#识别文字
data=client.basicGeneral(img)
print(data)

如果是文字文件,识别出来是字典
print(data["words_result"])#输出值
for d in data["words_result"]: #再遍历出所有值
print(d["words"])



标签:KEY,img,aip,words,print,识别,data,百度
来源: https://www.cnblogs.com/rhax072828/p/16245270.html