我是Python的新手。我在OCR项目中工作。我在Windows 7上使用Python 2.7.12。我在路径“C:\ Program Files(x86)\ Tesseract-OCR”中安装了tesseract
我在这里找到了pytesser库v0.0.2:https://searchcode.com/codesearch/view/11386640/#
当我运行代码时:
from pytesser import *
image=Image.open('dis.tiff')
text=image_to_string(image)
print (text)
调用tesseract并显示tesseract.exe窗口(参见图像:https://www.dropbox.com/s/p0i6sjj61yhfnp9/question.png?dl=0)。我想隐藏它,但我不知道该怎么做。我认为我必须更改库文件中的某些内容。有人可以帮帮我吗?