image_to_string
我最近在 python 中使用了 tesseract OCR,当我尝试从 tesseract导入时,我一直收到错误消息。
导致问题的代码:
# Perform OCR using tesseract-ocr library
from tesseract import image_to_string
image = Image.open('input-NEAREST.tif')
print image_to_string(image)
以上代码导致的错误:
Traceback (most recent call last):
file "./captcha.py", line 52, in <module>
from tesseract import image_to_string
ImportError: cannot import name image_to_string
我已经验证了 tesseract 模块已安装:
digital_alchemy@roaming-gnome /home $ pydoc modules | grep 'tesseract'
Hdf5StubImagePlugin _tesseract gzip sipconfig
ORBit cairo mako tesseract
我相信我已经获得了所有必需的软件包,但不幸的是我只是停留在这一点上。看来该功能不在模块中。
非常感谢任何帮助。