我在我的64位Windows 8.1机器上使用python 3.4。我已经成功安装了pytesseract 0.1.6和Pillow 3.0.0。这是我的代码:
import pytesseract
from PIL import Image
img = Image.open('test.png')
print(pytesseract.image_to_string(img))
和test.png
与项目位于同一文件夹中。我也尝试过JPG图像格式,但我遇到了同样的问题。
以下是错误代码:
FileNotFoundError: [WinError 2] The system cannot find the file specified
我该怎么做才能避免这个错误?提前谢谢。