Python pytesseract环境搭建(windows)

本文介绍了如何下载和安装pytesseract,包括环境变量配置,并提供了常见问题的解决方案,如找不到tesseract.exe和缺失训练文件的问题。通过示例展示了python中调用pytesseract进行中英文文字识别的方法。
摘要由CSDN通过智能技术生成

1. pytesseract安装包下载地址:https://digi.bib.uni-mannheim.de/tesseract/

2. 安装配置环境变量,例如:D:\soft1\Tesseract

3. 校验是否安装成功

4. python调用

a. tesseract模块安装:pip install pytesseract

b. 运行过程遇到的坑

1. pytesseract.pytesseract.TesseractNotFoundError: tesseract is not installed or it's not in your path

解决方案:

编辑pytesseract.py文件,修改成tesseract_cmd = 'OCR的安装路径下的tessract.exe'

2. pytesseract.pytesseract.TesseractError: (1, ‘Error opening data file \Program Files (x86)\Tesseract-OCR\chi_sim.traineddata

解决方案:

这是缺少对应的训练文件chi_sim,下载完,直接放到安装位置的tessdata文件夹里就好了。

from PIL import Image
import pytesseract

text1=pytesseract.image_to_string(Image.open('test1.png'),lang='chi_sim') #设置为中文文字的识别
text2=pytesseract.image_to_string(Image.open('test1.png'),lang='eng')   #设置为英文或阿拉伯字母的识别
print(text1)
print(text2)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值