Python图片验证码的识别

import ddddocr

ocr = ddddocr.DdddOcr()
with open('Python/Project2/captcha2.jpg', 'rb') as f:
    img_bites = f.read()
    ocr.classification(img_bites)
    print(ocr.classification(img_bites))

猜你喜欢

转载自blog.csdn.net/weixin_64974855/article/details/132617257