我正在尝试使用Tesseract,并且在第二次尝试时已经失败了。
这是图像文件:
结果始终为空字符串。代码如下:
from pytesseract import image_to_string
image_file = Image.open('image.png')
print(image_to_string(image_file))
我也直接从终端
尝试tesseract image.png out
再次没有成功。
这张图片有问题还是我做错了什么?
我正在使用安装了apt-get的Tesseract的Ubuntu 14.04以及使用pip安装的pytesseract。
Python版本:3.4