1

我是 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 )。我想隐藏它,但我不知道该怎么做。我认为我必须更改库文件中的某些内容。有人可以帮助我吗?

4

0 回答 0