也许有人可以帮助我!当我运行以下代码
导入pytesseract 从pytesseract导入image_to_string 从PIL导入图片 导入PIL
file = Image.open('/usr/local/Cellar/tesseract/4.1.0/share/tessdata/cap.png')
we_will = pytesseract.image_to_string(file)
print(we_will)
所有输出的是:
Process finished with exit code 0
这没有帮助。我在做什么错了?
答案 0 :(得分:0)
类似we_will
的声音是空字符串。尝试打印repr(we_will)
可以更清楚地了解这个想法。
IIRC,当PyTesseract无法确定图像中的文本内容时,便会执行此操作。对于单色背景的裁剪图像,您可以获得最佳效果。