我正在尝试将文本图像转换为文本。我pytesser
在 python 中使用,因为我已经安装了 tesseract,但甚至运行以下代码:
from pytesser import *
im = Image.open('phototest.tif')
text = image_to_string(im)
print text
我收到以下错误:
Tesseract Open Source OCR Engine with Leptonica
Please call SetImage before attempting recognition.
什么都没有打印(没有结果)。对上述问题有任何帮助吗?