安装库
测试项 | easyocr | paddleocr | cnocr |
效率 | 极差 | 好 | 一般 |
识别准确度 | 一般 | 好 | 极差 |
pip install easyocr pip install paddleocr
使用百度API
1. 申请API
2. 安装
pip install baidu-aip # pip install chardet
3. Demo
from aip import AipOcr # 定义常量 APP_ID = '27028275' API_KEY = 'Z7W3xABooBHTA53OhjwEUP2R' SECRET_KEY = 'your key' # 初始化AipFace对象 aipOcr = AipOcr(APP_ID, API_KEY, SECRET_KEY) # 读取图片 filePath = "D:\\Cumtb_Code\\data\\77qiqi\\FF21116476.jpg" def get_file_content(filePath): with open(filePath, 'rb') as fp: return fp.read() # 定义参数变量 options = { 'detect_direction': 'true', 'language_type': 'CHN_ENG', } # 调用通用文字识别接口 result = aipOcr.basicGeneral(get_file_content(filePath), options) print(result) words_result=result['words_result'] for i in range(len(words_result)): print(words_result[i]['words'])