【发布时间】:2019-10-25 05:48:17
【问题描述】:
我正在尝试为以下图像解析验证码
我尝试过使用 tessaract
data = br.open(captchaurl).read()
b = bytearray(data)
save = open(filename, 'wb')
save.write(data)
save.close()
ctext= pytesseract.image_to_string(Image.open(filename))
【问题讨论】:
-
我认为 tesseract 无法读取它。它需要更清晰的图像
标签: python tesseract captcha python-tesseract