Python简单的验证码识别

具体想要实现上面的代码需要安装两个包和一个引擎
在安装之前需要先安装好Python,pip并配置好环境变量

1.第一个包: pytesseract

pip install pytesseract

若是出现安装错误的情况,安装不了的时候,可以将命令改为 pip.exe install pytesseract来安装
若是将pip修改为pip.exe安装成功后,那么下文的所有pip都需要改为pip.exe

2.第二个包:PIL安装

 pip install PIL

若是失败了可以如下修改 pip install PILLOW

3.安装识别引擎tesseract-ocr

下载 tesseract-ocr,进行默认安装
获取方式:https://pan.baidu.com/s/1v_5iCt2fP9bsRF8ll-hnTQ 提取码:1byd
具体代码可以看这里

from PIL import Image
import pytesseract

imageObject=Image.open('code.jpg')
print (imageObject)
print (pytesseract.image_to_string(imageObject))

识别图片
在这里插入图片描述
这个时候运行发现报错了
Python简单的验证码识别_第1张图片
解决方法(D:/Python 该路径为Python安装位置,因人而异)
D:/Python/Lib/site-packages/pytesseract 下的 pytesseract.py文件做如下修改
在这里插入图片描述
再次执行,查看结果:
Python简单的验证码识别_第2张图片
文章转载自:https://blog.csdn.net/EB_NUM/article/details/77060009

你可能感兴趣的:(Python,Python,OCR,验证码,爬虫)