使用 pytesseract 解决验证码后输出空白?

发布于 2025-01-10 06:32:26 字数 566 浏览 0 评论 0原文

我正在尝试解决验证码:

captcha image

并运行脚本:

from PIL import Image
from pytesseract import pytesseract

path_to_tesseract = r"/usr/local/Cellar/tesseract/5.0.1/bin/tesseract"
image_path2 = r"captcha2.jpg"
img = Image.open(image_path2)
pytesseract.tesseract_cmd = path_to_tesseract
text = pytesseract.image_to_string(img)
print(text[:-1])
captchaText=text[:-1]

但输出为空白,并且当我使用相同的脚本时使用以下验证码:

second captcha

它效果很好。

I am trying to solve a captcha :

captcha image

and run a script :

from PIL import Image
from pytesseract import pytesseract

path_to_tesseract = r"/usr/local/Cellar/tesseract/5.0.1/bin/tesseract"
image_path2 = r"captcha2.jpg"
img = Image.open(image_path2)
pytesseract.tesseract_cmd = path_to_tesseract
text = pytesseract.image_to_string(img)
print(text[:-1])
captchaText=text[:-1]

but output is blank and when I use the same script with the following captcha:

second captcha

it works great.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文