赞
踩
python实现图像文字识别,我们需要安装 pytesseract 和 pillow 这两个库,直接用 pip 安装就好。
下面是实现代码:
import pytesseract
from PIL import Image
pytesseract.pytesseract.tesseract_cmd = 'D://Python//Tesseract-OCR//tesseract.exe'//Tesseract-OCR安装路径
image = Image.open('D://3.png')//图片路径
text = pytesseract.image_to_string(image,lang='chi_sim')//chi_sim为中文包
print(text)
用Tesseract可以识别格式规范的文字,主要具有以下特点:
• 使用一个标准字体(不包含手写体、草书,或者十分“花哨的”字体)
• 虽然被复印或拍照,字体还是很清晰,没有多余的痕迹或污点
• 排列整齐,没有歪歪斜斜的字
• 没有超出图片范围,也没有残缺不全,或紧紧贴在图片的边缘
下面将给出几个tesseract识别图片中文字的例子。
首先是E://figures/other/poems.jpg, 输入命令 tesseract E://figures/other/poems.jpg
实现逻辑
实现过程
4. 安装百度的Python SDK
pip install baidu-aip
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。