我正在尝试在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?尝试了解决方案。但它似乎没有帮助
答案 0 :(得分:1)
根据追溯,错误不是来自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