欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Python识别简单的验证码信息

程序员文章站 2022-06-21 14:32:49
废话不多说,直接开干!首先安装库pip install pytesseractpip install PILLOW然后按照tesseract程序下载安装tessercat下载地址:https://digi.bib.uni-mannheim.de/tesseract/ //请依据自己的操作系统下载exe文件安装用户变量,系统变量都添加:PATH C:\Program Files (x86)\Tesseract-OCR; //这是tesseract的安装目录系统...

首先安装库

pip install pytesseract
pip install PILLOW

然后按照tesseract程序下载安装

tessercat下载地址:https://digi.bib.uni-mannheim.de/tesseract/ //请依据自己的操作系统下载exe文件安装

用户变量,系统变量都添加:PATH C:\Program Files (x86)\Tesseract-OCR; //这是tesseract的安装目录
系统变量添加:TESSDATA_PREFIX C:\Program Files (x86)\Tesseract-OCR
//有的博文写到“TESSDATA_PREFIX”目录需要到tessdata,但是我电脑配置到tessdata就会多一级tessdata目录,命令测试时会找不到,所以这里自己依据调试哪个OK用哪个~
Python识别简单的验证码信息

再找到pytesseract.py文件
修改添加tesseract.exe

 tesseract_cmd = 'C:\\Program Files (x86)\\Tesseract-OCR\\tesseract.exe' 

Python识别简单的验证码信息

#! -*- coding:utf-8 -*- import pytesseract from PIL import Image
im=Image.open('D:/py3.8/src/商标/8.jpg') code = pytesseract.image_to_string(im).strip() print('验证码识别结果:'+code) print(type(code)) if(code =='51188'): print('ok') # print(pytesseract.image_to_string(im)) 

执行结果

验证码识别结果:51188 <class 'str'> ok

Process finished with exit code 0 

只能识别部分验证码,加条线,下划线好像不行!

本文地址:https://blog.csdn.net/weixin_37254196/article/details/108845548

相关标签: python 验证码