由于识别ocr有的频率不高,图片无保密性需求,也不想太大的库,
就决定还是用下api算了,试用了几家,决定用百度的ocr包,相对简单。
遇到的问题里面下列基本有提到:例如获取ID,KEY;例如安装库;
参考帖子:python+百度OCR的使用方法(踩坑+测试程序)_no module named 'aip-CSDN博客
遇到的坑1,标准版的ocr通用识别,精准度不够,换为高精版;
pip install baidu-aip
pip install chardet 文章来源:https://www.toymoban.com/news/detail-738352.html
代码如下:文章来源地址https://www.toymoban.com/news/detail-738352.html
from aip import AipOcr
""" 你的 APPID AK SK """
APP_ID = 'xxx'
API_KEY = 'xxx'
SECRET_KEY = 'xxx'
client = AipOcr(APP_ID, API_KEY, SECRET_KEY)
with open("1.png", 'rb') as f:
image = f.read()
#basicAccurate#handwriting
res_image = client.basicAccurate(image)
print(res_image)
with open("1.jpg", 'rb') as f:
image = f.read()
res_image = client.basicAccurate(image)
print(res_image)
到了这里,关于使用了百度OCR,记录一下的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!