habout632 / pytesser

Automatically exported from code.google.com/p/pytesser
Other
0 stars 0 forks source link

Remove title being displayed when using version 3.01 #14

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. When Using Tesseract version 3.01, a title line is displayed.
2.
3.

What is the expected output? What do you see instead?

What version of the product are you using? On what operating system?

Please provide any additional information below.

To stop this being displayed change the line in pytesser.py

proc = subprocess.Popen(args)

to this:

proc = subprocess.Popen(args, stdout=subprocess.PIPE)

Original issue reported on code.google.com by biggle...@gmail.com on 3 Dec 2011 at 1:43