vlambda博客
学习文章列表

python免费的验证码识别OCR项目

免费的验证码识别OCR项目已经打包成pypi包

  1. 可以通过以下命令安装 pip install ddddocr -i https://pypi.org/simple


  2. 豆瓣等国内源同步需要一些时间,目前建议通过官方源安装

环境要求 

目前已经支持python3.8以下的了,python3.8以上毫无问题。


Windows/Linux/Macox..


调用方法

import ddddocr

ocr = ddddocr.DdddOcr()

with open('test.png''rb') as f:

    img_bytes = f.read()

res = ocr.classification(img_bytes)

print(res)



我试了试很不错,而且是cpu的情况下,几毫秒返回结果。


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