爬虫教程验证码识别
Posted python编程社
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了爬虫教程验证码识别相关的知识,希望对你有一定的参考价值。
安装tesseract
安装pytesseract
pip install pytesseract
PIL
。
pip install pillow
实例
pytesseract
将图片上的文字转换为文本文字的示例代码如下:
import pytesseract
from PIL import Image
# 指定tesseract.exe所在的路径
pytesseract.pytesseract.tesseract_cmd = r'E:\Tesseract-OCR\tesseract.exe'
# 打开图片
image = Image.open("验证图片.png")
# 调用image_to_string将图片转换为文字
text = pytesseract.image_to_string(image)
print(text)
输出结果:
总结
以上是关于爬虫教程验证码识别的主要内容,如果未能解决你的问题,请参考以下文章