On Tue, Nov 05, 2013 at 03:05:51AM -0800, 007 wrote: > Using Tessaract through simpleCV, readText will throw the error "Empty Page" > on > console(std-err) when it thinks it is empty page. How to control this and > prevent it from displaying it on console? > > As i tried redirecting std-err to /dev/null, still i get it on console?
Redirecting stderr should work, with something like: tesseract image.png out 2>/dev/null If you're using version 3.02.02, you can also use the 'quiet' config option as mentioned here: http://code.google.com/p/tesseract-ocr/wiki/FAQ#How_can_I_supress_tesseract_info_line? like this: tesseract image.png out quiet Hope this helps, Nick -- -- You received this message because you are subscribed to the Google Groups "tesseract-ocr" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/tesseract-ocr?hl=en --- You received this message because you are subscribed to the Google Groups "tesseract-ocr" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.

