共计 638 个字符,预计需要花费 2 分钟才能阅读完成。
1. 百度 AI 开发平台注册账号
链接入口
2. 创立利用
3. 获取参数
Key | Valve |
---|---|
APP_ID | 24058547 |
API_KEY | Ak2MyGg8VGFG7KxlWaMAoW2p |
SECRET_KEY | ZlPKBKEUH27K7000000000Oxxxxxxx |
4. 下载须要的库
pip install baidu-aip
'''
utf-8
Author : zhu wei
python 图片转文字
'''
import os
from aip import AipOcr
APP_ID = '24058547'
API_KEY = 'Ak2MyGg8VGFG7KxlWaMAoW2p'
SECRET_KEY = 'ZlPKBKEUH27K7000000000Oxxxxxxx'
def picture_to_text(path):
client = AipOcr(APP_ID, API_KEY, SECRET_KEY)
img = open(path, 'rb').read()
#调用接口来辨认
#accurate- 高精度含地位版 -50 次
#basicAccurate- 高精度版 -500 次
#basicGeneral- 通用文字辨认 -50000 次
msg = client.basicGeneral(img)
# 辨认写入 txt 文件内
for i in msg.get('words_result'):
with open(r'result.txt', 'w+') as f:
f.write(i.get('words'))
f.write('\n')
picture_totxt('./1.png')
正文完