图片验证码识别学习

1.使用pytesseract+pillow实现验证码处理

python 复制代码
import cv2 as cv
import pytesseract
from PIL import Image

def recognize_text(image):
    # 调整图像大小,使其变大,便于后续处理
    scale_percent = 400  # 将图像放大到原来的400%
    width = int(image.shape[1] * scale_percent / 100)
    height = int(image.shape[0] * scale_percent / 100)
    dim = (width, height)
    resized_image = cv.resize(image, dim, interpolation=cv.INTER_CUBIC)

    # 边缘保留滤波去噪
    dst = cv.pyrMeanShiftFiltering(resized_image, sp=20, sr=60)
    # 转换为灰度图像
    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=1)
    dilate = cv.dilate(erode, None, iterations=1)  # 精细调整,避免过度膨胀
    # 显示二值处理后的图像
    cv.imshow('Dilated Image', dilate)
    # 反色,使背景变为白色,文字变为黑色便于识别
    cv.bitwise_not(dilate, dilate)
    cv.imshow('Binary Image', dilate)
    # 将图像转换为 PIL 图像以供 pytesseract 使用
    test_message = Image.fromarray(dilate)
    # 使用 pytesseract 识别文字
    text = pytesseract.image_to_string(test_message, config='--psm 7')  # psm 7:处理单行文本
    # 去除空格
    text = text.replace(" ", "")
    print(f'识别结果:{text}')

# 读取输入图像
src = cv.imread('D:\\yzm.png')
cv.imshow('Input Image', src)
# 调用识别函数
recognize_text(src)
# 等待用户按键操作
cv.waitKey(0)
cv.destroyAllWindows()

上面代码可以直接作为一个模板进行验证码处理使用,我这些给出,并在下面应用到实战:

python 复制代码
import cv2 as cv
import pytesseract
from PIL import Image

def process_captcha_image(image_path):
    # 读取输入图像
    image = cv.imread(image_path)
    if image is None:
        raise FileNotFoundError(f"The image at path {image_path} could not be found.")
    
    # 调整图像大小,使其变大,便于后续处理
    scale_percent = 400  # 将图像放大到原来的400%
    width = int(image.shape[1] * scale_percent / 100)
    height = int(image.shape[0] * scale_percent / 100)
    dim = (width, height)
    resized_image = cv.resize(image, dim, interpolation=cv.INTER_CUBIC)

    # 边缘保留滤波去噪
    dst = cv.pyrMeanShiftFiltering(resized_image, sp=20, sr=60)
    # 转换为灰度图像
    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=1)
    dilate = cv.dilate(erode, None, iterations=1)  # 精细调整,避免过度膨胀
    # 反色,使背景变为白色,文字变为黑色便于识别
    cv.bitwise_not(dilate, dilate)
    # 将图像转换为 PIL 图像以供 pytesseract 使用
    test_message = Image.fromarray(dilate)
    # 使用 pytesseract 识别文字
    text = pytesseract.image_to_string(test_message, config='--psm 7')  # psm 7:处理单行文本
    # 去除空格
    text = text.replace(" ", "")
    return text

def recognize_text_from_image_path(image_path):
    try:
        text = process_captcha_image(image_path)
        print(f'识别结果:{text}')
    except FileNotFoundError as e:
        print(e)

# 调用函数,传入验证码图片路径
recognize_text_from_image_path('D:\\yzm.png')

# 等待用户按键操作(测试环境中可以选择是否保留)
cv.waitKey(0)
cv.destroyAllWindows()

2.实战练习,pytesseract实用

python 复制代码
from selenium import webdriver
from selenium.webdriver.common.by import By
import pytesseract
from PIL import Image
import time

driver = webdriver.Chrome()

driver.get('https://captcha7.scrape.center/')
time.sleep(3)

search_name = driver.find_element(By.XPATH,'//*[@id="app"]/div[2]/div/div/div/div/div/form/div[1]/div/div/input')
search_password = driver.find_element(By.XPATH,'//*[@id="app"]/div[2]/div/div/div/div/div/form/div[2]/div/div/input')
search_name.send_keys('admin')
search_password.send_keys('admin')
yzm_img = driver.find_element(By.XPATH,'//*[@id="captcha"]')
time.sleep(2)
# 验证码操作
yzm_path = 'D:\\yzm.png'
yzm_img.screenshot(yzm_path)
im = Image.open('D:\\yzm.png')


text = pytesseract.image_to_string(Image.open(r'D:\\yzm.png'))
search_yzm = driver.find_element(By.XPATH,'//*[@id="app"]/div[2]/div/div/div/div/div/form/div[3]/div/div/div[1]/div/input')
search_yzm.send_keys(text)

search_button = driver.find_element(By.XPATH,'//*[@id="app"]/div[2]/div/div/div/div/div/form/div[4]/div/button/span')
search_button.click()
time.sleep(5)

driver.quit()

发现结果并不是很准确,于是进行 使用pytesseract+pillow实现验证码处理

3. pytesseract进阶处理

python 复制代码
from selenium import webdriver
from selenium.webdriver.common.by import By
import pytesseract
from PIL import Image
import time
import cv2 as cv

def process_captcha_image(image_path):
    # 读取输入图像
    image = cv.imread(image_path)
    if image is None:
        raise FileNotFoundError(f"The image at path {image_path} could not be found.")

    # 调整图像大小,使其变大,便于后续处理
    scale_percent = 400  # 将图像放大到原来的400%
    width = int(image.shape[1] * scale_percent / 100)
    height = int(image.shape[0] * scale_percent / 100)
    dim = (width, height)
    resized_image = cv.resize(image, dim, interpolation=cv.INTER_CUBIC)

    # 边缘保留滤波去噪
    dst = cv.pyrMeanShiftFiltering(resized_image, sp=20, sr=60)
    # 转换为灰度图像
    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=1)
    dilate = cv.dilate(erode, None, iterations=1)  # 精细调整,避免过度膨胀
    # 反色,使背景变为白色,文字变为黑色便于识别
    cv.bitwise_not(dilate, dilate)
    # 将图像转换为 PIL 图像以供 pytesseract 使用
    test_message = Image.fromarray(dilate)
    # 使用 pytesseract 识别文字
    text = pytesseract.image_to_string(test_message, config='--psm 7')  # psm 7:处理单行文本
    # 去除空格
    text = text.replace(" ", "")
    return text

def recognize_text_from_image_path(image_path):
    try:
        text = process_captcha_image(image_path)
        return text
    except FileNotFoundError as e:
        print(e)
        return ""

driver = webdriver.Chrome()

driver.get('https://captcha7.scrape.center/')
time.sleep(3)

search_name = driver.find_element(By.XPATH,'//*[@id="app"]/div[2]/div/div/div/div/div/form/div[1]/div/div/input')
search_password = driver.find_element(By.XPATH,'//*[@id="app"]/div[2]/div/div/div/div/div/form/div[2]/div/div/input')
search_name.send_keys('admin')
search_password.send_keys('admin')
yzm_img = driver.find_element(By.XPATH,'//*[@id="captcha"]')
time.sleep(2)

# 验证码操作
yzm_path = 'D:\\yzm.png'
yzm_img.screenshot(yzm_path)
captcha_text = recognize_text_from_image_path(yzm_path)

search_yzm = driver.find_element(By.XPATH,'//*[@id="app"]/div[2]/div/div/div/div/div/form/div[3]/div/div/div[1]/div/input')
search_yzm.send_keys(captcha_text)

search_button = driver.find_element(By.XPATH,'//*[@id="app"]/div[2]/div/div/div/div/div/form/div[4]/div/button/span')
search_button.click()
time.sleep(5)

driver.quit()

4.复杂情况,超级进阶版识别

经过此时pytesseract+pillow进阶处理仍然无法识别到验证码,需要进行深度学习模型和模拟训练模型,或者使用打码平台处理

python 复制代码
from selenium import webdriver
from selenium.webdriver.common.by import By
import time
import ddddocr

driver = webdriver.Chrome()

driver.get('https://captcha8.scrape.center/')
time.sleep(3)

search_name = driver.find_element(By.XPATH,'//*[@id="app"]/div[2]/div/div/div/div/div/form/div[1]/div/div/input')
search_password = driver.find_element(By.XPATH,'//*[@id="app"]/div[2]/div/div/div/div/div/form/div[2]/div/div/input')
search_name.send_keys('admin')
search_password.send_keys('admin')
yzm_img = driver.find_element(By.XPATH,'//*[@id="captcha"]')
time.sleep(5)
# 验证码操作
yzm_path = 'D:\\yzm.png'
yzm_img.screenshot(yzm_path)
time.sleep(3)

# ocr = ddddocr.DdddOcr()
ocr = ddddocr.DdddOcr(beta=True)
# 读取图像
with open("D:\\yzm.png", "rb") as image_file:
    image = image_file.read()

result = ocr.classification(image)


search_yzm = driver.find_element(By.XPATH,'//*[@id="app"]/div[2]/div/div/div/div/div/form/div[3]/div/div/div[1]/div/input')
search_yzm.send_keys(result)

search_button = driver.find_element(By.XPATH,'//*[@id="app"]/div[2]/div/div/div/div/div/form/div[4]/div/button/span')
search_button.click()
time.sleep(5)

driver.quit()
相关推荐
kisshuan1239612 小时前
YOLO11-RepHGNetV2实现甘蔗田杂草与作物区域识别详解
人工智能·计算机视觉·目标跟踪
charlie11451419112 小时前
嵌入式现代C++教程: 构造函数优化:初始化列表 vs 成员赋值
开发语言·c++·笔记·学习·嵌入式·现代c++
IT=>小脑虎13 小时前
C++零基础衔接进阶知识点【详解版】
开发语言·c++·学习
#眼镜&13 小时前
嵌入式学习之路2
学习
码农小韩13 小时前
基于Linux的C++学习——指针
linux·开发语言·c++·学习·算法
微露清风13 小时前
系统性学习C++-第十九讲-unordered_map 和 unordered_set 的使用
开发语言·c++·学习
_codemonster13 小时前
高斯卷积的可加性定理
人工智能·计算机视觉
wdfk_prog13 小时前
[Linux]学习笔记系列 -- [fs]seq_file
linux·笔记·学习
行业探路者14 小时前
二维码标签是什么?主要有线上生成二维码和文件生成二维码功能吗?
学习·音视频·语音识别·二维码·设备巡检
li星野14 小时前
OpenCV4X学习—核心模块Core
人工智能·opencv·学习