我只使用PIL然后当我使用pytesser时它正常工作然后它无法正常工作。我能做些什么呢?
from PIL import Image
from pytesser import *
image_file = Image.open("vote.jpg")
im = Image.open(image_file)
text = image_to_string(im)
print text
Traceback (most recent call last):
File "C:/Users/Tanvir/Desktop/py thon hand/hala.py", line 4, in <module>
image_file = Image.open("vote.jpg")
File "C:\Pythons27\lib\site-packages\PIL\Image.py", line 2286, in open
% (filename if filename else fp))
IOError: cannot identify image file 'vote.jpg'
答案 0 :(得分:0)
我找到了这个解决方案。这是PIL的问题所以首先我必须卸载这个PIL模块然后再安装它并完成工作每件事都没问题。