前言

在使用自动化登录网站的时候,经常输入用户名和密码后会遇到验证码。今天介绍一款通用验证码识别 OCR库,对验证码识别彻底说拜拜,它的名字是 ddddocr(带带弟弟 OCR )。这里主要以字母数字类验证码进行说明。
(Python版本必须>=3.8)

项目地址:https://github.com/sml2h3/ddddocr

普通安装

pip install ddddocr

镜像安装

pip install ddddocr -i https://pypi.tuna.tsinghua.edu.cn/simple/

简单使用

import ddddocr
# 识别图片验证码
orc = ddddocr.DdddOcr()
with open('./RandCode.png','rb') as fp:
    img_bytes = fp.read()
res = orc.classification(img_bytes)
print(res)

与python自带的pytesseract库相比

ddddorc识别效果较好高于pytesseract,使用简单
ddddorc不需要引入其他的库

文章目录