标签:图像识别 win win64 AC cmd 小脚本 package int 图像
python 简单图像识别--验证码
记录下,准备工作安装过程很是麻烦。
首先库:pytesseract,image,tesseract,PIL
windows安装PIL,直接exe进行安装更方便(https://files.cnblogs.com/files/Oran9e/PILwin64.zip)(https://files.cnblogs.com/files/Oran9e/PILwin32.zip)
安装 image:pip install image
安装 pytesseract:pip install pytesseract
安装 tesseract:pip install tesseract (安装 tesseracr,这里是个坑,需要安装到C盘里C:\Program Files (x86)\Tesseract-OCR,也就是默认路径 ,不然运行 python 代码的时候调用不了 tesseract.exe )
修改 tesseract.py 代码:\python\Lib\site-packages\pytesseract\tesseract.py
tesseract_cmd 改成 tesseract.exe的路径,进行调用。
tesseract_cmd = ‘C:/Program Files (x86)/Tesseract-OCR/tesseract.exe‘
准备完上面的工作,基本上就可以进行简单的验证码识别了。
代码:
#coding=utf-8 from PIL import Image import pytesseract image = Image.open(‘2.jpg‘) orange = pytesseract.image_to_string(image) print orange
下篇文章将会写个自动识别验证码,实现自动登陆的小脚本。
任重而道远!
标签:图像识别 win win64 AC cmd 小脚本 package int 图像
原文地址:https://www.cnblogs.com/Oran9e/p/8799194.html