python opencv pytesseract 验证码识别的实现

作者:叶庭云 时间:2021-12-02 06:53:56 

一、环境配置

需要 pillow 和 pytesseract 这两个库,pip install 安装就好了。


install pillow -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
pip install pytesseract -i http://pypi.douban.com/simple --trusted-host pypi.douban.com

安装好Tesseract-OCR.exe

pytesseract 库的配置:搜索找到pytesseract.py,打开该.py文件,找到 tesseract_cmd,改变它的值为刚才安装 tesseract.exe 的路径。

python opencv pytesseract 验证码识别的实现

二、验证码识别

识别验证码,需要先对图像进行预处理,去除会影响识别准确度的线条或噪点,提高识别准确度。

实例1


import cv2 as cv
import pytesseract
from PIL import Image

def recognize_text(image):
 # 边缘保留滤波 去噪
 dst = cv.pyrMeanShiftFiltering(image, sp=10, sr=150)
 # 灰度图像
 gray = cv.cvtColor(dst, cv.COLOR_BGR2GRAY)
 # 二值化
 ret, binary = cv.threshold(gray, 0, 255, cv.THRESH_BINARY_INV | cv.THRESH_OTSU)
 # 形态学操作  腐蚀 膨胀
 erode = cv.erode(binary, None, iterations=2)
 dilate = cv.dilate(erode, None, iterations=1)
 cv.imshow('dilate', dilate)
 # 逻辑运算 让背景为白色 字体为黑 便于识别
 cv.bitwise_not(dilate, dilate)
 cv.imshow('binary-image', dilate)
 # 识别
 test_message = Image.fromarray(dilate)
 text = pytesseract.image_to_string(test_message)
 print(f'识别结果:{text}')

src = cv.imread(r'./test/044.png')
cv.imshow('input image', src)
recognize_text(src)
cv.waitKey(0)
cv.destroyAllWindows()

运行效果如下:

识别结果:3n3D

Process finished with exit code 0

python opencv pytesseract 验证码识别的实现

实例2


import cv2 as cv
import pytesseract
from PIL import Image

def recognize_text(image):
 # 边缘保留滤波 去噪
 blur =cv.pyrMeanShiftFiltering(image, sp=8, sr=60)
 cv.imshow('dst', blur)
 # 灰度图像
 gray = cv.cvtColor(blur, cv.COLOR_BGR2GRAY)
 # 二值化
 ret, binary = cv.threshold(gray, 0, 255, cv.THRESH_BINARY_INV | cv.THRESH_OTSU)
 print(f'二值化自适应阈值:{ret}')
 cv.imshow('binary', binary)
 # 形态学操作 获取结构元素 开操作
 kernel = cv.getStructuringElement(cv.MORPH_RECT, (3, 2))
 bin1 = cv.morphologyEx(binary, cv.MORPH_OPEN, kernel)
 cv.imshow('bin1', bin1)
 kernel = cv.getStructuringElement(cv.MORPH_OPEN, (2, 3))
 bin2 = cv.morphologyEx(bin1, cv.MORPH_OPEN, kernel)
 cv.imshow('bin2', bin2)
 # 逻辑运算 让背景为白色 字体为黑 便于识别
 cv.bitwise_not(bin2, bin2)
 cv.imshow('binary-image', bin2)
 # 识别
 test_message = Image.fromarray(bin2)
 text = pytesseract.image_to_string(test_message)
 print(f'识别结果:{text}')

src = cv.imread(r'./test/045.png')
cv.imshow('input image', src)
recognize_text(src)
cv.waitKey(0)
cv.destroyAllWindows()

运行效果如下:

二值化自适应阈值:181.0
识别结果:8A62N1

Process finished with exit code 0

python opencv pytesseract 验证码识别的实现

实例3


import cv2 as cv
import pytesseract
from PIL import Image

def recognize_text(image):
 # 边缘保留滤波 去噪
 blur = cv.pyrMeanShiftFiltering(image, sp=8, sr=60)
 cv.imshow('dst', blur)
 # 灰度图像
 gray = cv.cvtColor(blur, cv.COLOR_BGR2GRAY)
 # 二值化 设置阈值 自适应阈值的话 黄色的4会提取不出来
 ret, binary = cv.threshold(gray, 185, 255, cv.THRESH_BINARY_INV)
 print(f'二值化设置的阈值:{ret}')
 cv.imshow('binary', binary)
 # 逻辑运算 让背景为白色 字体为黑 便于识别
 cv.bitwise_not(binary, binary)
 cv.imshow('bg_image', binary)
 # 识别
 test_message = Image.fromarray(binary)
 text = pytesseract.image_to_string(test_message)
 print(f'识别结果:{text}')

src = cv.imread(r'./test/045.jpg')
cv.imshow('input image', src)
recognize_text(src)
cv.waitKey(0)
cv.destroyAllWindows()

运行效果如下:

二值化设置的阈值:185.0
识别结果:7364

Process finished with exit code 0

python opencv pytesseract 验证码识别的实现

来源:https://blog.csdn.net/fyfugoyfa/article/details/108160915

标签:opencv,pytesseract,验证码
0
投稿

猜你喜欢

  • 从客户端提升SQL Server数据库性能

    2009-03-06 14:27:00
  • 公网远程访问局域网SQL Server数据库

    2024-01-22 01:38:21
  • vscode使用chatGPT 的方法

    2022-10-10 15:55:38
  • python获取代码运行时间的实例代码

    2023-11-04 02:25:10
  • Python学习笔记之变量与转义符

    2022-12-20 23:21:18
  • SQL2005 高效分页sql语句

    2024-01-17 13:23:22
  • 对python中的乘法dot和对应分量相乘multiply详解

    2021-01-14 15:54:58
  • Scala 环境搭建及IDEA工具的配置使用教程

    2023-12-11 06:07:52
  • 详解Vue的ref特性的使用

    2024-06-07 15:23:02
  • Python中Iterator迭代器的使用杂谈

    2023-11-23 03:49:30
  • js改变文章字体大小的实例代码

    2024-04-19 10:03:21
  • Oracle修改表空间大小的方法

    2024-01-13 04:14:49
  • SQL Server 移动系统数据库

    2024-01-15 11:35:54
  • SQL LOADER错误小结

    2024-01-20 23:26:36
  • Python变量和字符串详解

    2023-08-23 02:59:49
  • vue tree封装一个可选的树组件方式

    2024-05-09 09:53:59
  • yolov5返回坐标的方法实例

    2023-10-05 20:09:43
  • python使用turtle绘制分形树

    2022-10-21 12:10:23
  • Python 操作SQLite数据库详情

    2024-01-18 04:45:55
  • MySQL索引优化实例分析

    2024-01-26 18:34:27
  • asp之家 网络编程 m.aspxhome.com