本帖最后由 Cool_Breeze 于 2021-1-14 18:48 编辑
#1 得有一个百度账号
[Python] 纯文本查看 复制代码 https://ai.baidu.com/
#2 控制台 -》 文字识别
#3 创建应用,获取 appid, API Key, Secret Key
# 查看文档。。。
这个是测试脚本[Python] 纯文本查看 复制代码 # coding=utf-8# python3.7
import json
from pprint import pprint
from aip import AipOcr
appId = '你的appid'
apiKey = '你的apikey'
secretKey = '你的secretkey'
# 请求连接服务器
client = AipOcr(appId, apiKey, secretKey)
# 获取本地图片
def get_file_content(filePath):
with open(filePath, 'rb') as fp:
return fp.read()
image = get_file_content(r'C:\Users\user\Desktop\水贴\175925.png')
# 设置语言,这是百度api的参数,可查看官方文档
options = {'language_type':'CHN_ENG'}
# 返回json格式数据
res = client.basicGeneral(image, options)
pprint(res)
with open('test.json', 'w') as f:
json.dump(res,f, ensure_ascii=False, indent=4)
这是百度ai返回数据[Python] 纯文本查看 复制代码 {'log_id': 1349660771457433600, 'words_result': [{'words': '帖子点评活动悬堂商品提到我的'},
{'words': '1-1416:57'},
{'words': 'kesi回复了您的帖子茅台你们现在卖了还是留着查看'}],
'words_result_num': 3}
|