我正在尝试在python中实现OCR。当我运行以下代码时:

from PIL import Image
from pytesser import *

image_file = 'menu.jpg'
im = Image.open(image_file)
text = image_to_string(im)
text = image_file_to_string(image_file)
text = image_file_to_string(image_file, graceful_errors=True)
print "=====output=======\n"
print text


我收到以下错误:

Traceback (most recent call last):
 File "C:/Python27/ocr.py", line 2, in <module>
    from pytesser import *
  File "C:/Python27\pytesser.py", line 6, in <module>
ImportError: No module named Image


我的pytesser目录中有一个文件夹名称C:\Python27\Lib\site-packages
并且在安装PILLOW的同一目录中还有一个名为PIL的文件。

编辑:我在Why can't Python import Image from PIL?尝试了解决方案。但这似乎没有帮助

最佳答案

根据回溯,错误不是来自pytesser中的c:\Python27\Lib\Site-Packages,而是来自C:\Python27\pytesser.py line 6

您可以在C:\ Python27 \ pytesser.py第6行共享代码吗?或通过查看C:\Python27\pytesser.py line 6中的代码进行调试

如果您希望ocr.py在C:\ Python27 \ Lib \ site-packages(如果存在)中使用pytesser,请从ocr.py目录中删除pytesser.py。

如果由您编码,则理想情况下应为from PIL import Image,而不是import Image

关于python - pytesser给出导入错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38929372/

10-12 22:46