当我用pytesser运行tesseract时,如何隐藏控制台窗口

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

链接地址: http://www.djcxy.com/p/96739.html

上一篇: How can I hide the console window when I run tesseract with pytesser

下一篇: Getting started with Python OCR on windows?