美文网首页Python
Python免费的验证码识别

Python免费的验证码识别

作者: 八月欢喜 | 来源:发表于2021-07-14 10:25 被阅读0次

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

    1. 可以通过以下命令安装
      pip install ddddocr==1.0.4

    2. 豆瓣源同步需要一些时间,目前建议通过官方源安装(命令后添加 -i https://pypi.org/simple)

    使用方式为

    import ddddocr

    ocr = ddddocr.DdddOcr()

    with open('test.png', 'rb') as f:
    img_bytes = f.read()

    res = ocr.classification(img_bytes)
    print(res)

    感谢哲哥,哲哥强的一匹
    转载于逆向群,侵权联系删除

    相关文章

      网友评论

        本文标题:Python免费的验证码识别

        本文链接:https://www.haomeiwen.com/subject/ooxypltx.html