我已经安装了 Pytesser 从图像中提取文本
from PIL import Image
from pytesser import *
print image_to_string
上面的命令正在工作,但是当我输入代码时
from pytesser import *
from PIL import Image
image = Image.open('C:/Users/Anmol/Desktop/PYTHON/text_image.jpg')
image_to_string(image)
我得到错误:
**
回溯(最后一次调用):文件“C:\Users\Anmol\Desktop\PYTHON\text_image.py”,第 23 行,在 image_to_string(image) 文件“C:\Python27\lib\site-packages\pytesser.py ",第 31 行,在 image_to_string call_tesseract(scratch_image_name, scratch_text_name_root) 文件 "C:\Python27\lib\site-packages\pytesser.py",第 21 行,在 call_tesseract proc = subprocess.Popen(args) 文件 "C:\Python27 \lib\subprocess.py",第 390 行,在init errread,errwrite) 文件 "C:\Python27\lib\subprocess.py",第 640 行,在 _execute_child startupinfo) WindowsError: [错误 2] 系统找不到文件指定的**
Plzz 指导我做什么,因为我是 Python 新手。