开发者

Python免费验证码识别之ddddocr识别OCR自动库实现

开发者 https://www.devze.com 2022-12-11 12:48 出处:网络 作者: 海宝7号
目录安装过程:完成之后,找个参考图片附ddddocr-验证码识别案例总结需要ocr识别,推荐一个python免费的验证码识别-ddddocr
目录
  • 安装过程:
  • 完成之后,找个参考图片
  • 附ddddocr-验证码识别案例
  • 总结

需要ocr识别,推荐一个python免费的验证码识别-ddddocr

安装过程:

Python免费验证码识别之ddddocr识别OCR自动库实现

1、镜像安装:pip install ddddocr -i https://pypi.tuhttp://www.cppcns.comna.tsinghua.edu.cn/simple

pip install ddddocr -i https://pypi.tuna.tsiwww.cppcns.comnghua.edu.cn/simple

2.python.exe -m pip install --upgrade pip

注意升级pip库,,动不动升级就很麻烦。

Collecting pip
  Downloading https://pypi.tuna.tsinghua.edu.cn/packages/ca/31/b88ef447d595963c01060998cb329251648acf4a067721b0452c45527eb8/pip-21.2.4-py3-none-any.whl (1.6 MB)
     |████████████████████████████████|http://www.cppcns.com 1.6 MB 939 kB/s
Installing collected packages: pip
  Attempting uninstall: pip
    Found existing installation: pip 21.2.1
    Uninstalling pip-21.2.1:
      Successfully uninstalled pip-21.2.1
Successfully installed pip-21.2.4

Python免费验证码识别之ddddocr识别OCR自动库实现

完成之后,找个参考图片

Python免费验证码识别之ddddocr识别OCR自动库实现

import ddddocr
ocr = ddddocr.DdddOcr()
with open('1.png', 'rb') as f:
编程客栈    img_bytes = f.read()
res = ocr.classification(img_bytes)
print(res)

Python免费验证码识别之ddddocr识别OCR自动库实现

对比效果图:

Python免费验证码识别之ddddocr识别OCR自动库实现

Python免费验证码识别之ddddocr识别OCR自动库实现

效果不是太好,有的图片,例如:

Python免费验证码识别之ddddocr识别OCR自动库实现

Python免费验证码识别之ddddocr识别OCR自动库实现

哈哈哈,自个玩吧。

附ddddocr-验证码识别案例

import ddddocr
ocr=ddddocr.DdddOcr()
with open('test_img.png', 'rb') as f:
    img_bytes=f.read()
 
res=ocr.classification(img_bytes)
print(res)

普通干扰较弱的验证码均可识别通过

Python免费验证码识别之ddddocr识别OCR自动库实现

总结

到此这篇关于Python免费验证码识别之ddddocr识别OCR自动库实现的文章就介绍到这了,更多相关ddddocr识别OCR自动库内容请搜索我们以前的文章或继续浏览下面的相http://www.cppcns.com关文章希望大家以后多多支持我们!

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号