I have noticed that on the windows command line, nothing is output
whether successful or not, but on Ubuntu it always gives you some
feedback. In the source in tprintf.cpp I noticed the following:
#ifdef __MSW32__
// TRACE ("%s", msg); //Visual C++2.0 macro
#endif
however, changing this to:
#ifdef __MSW32__
printf ("%s", msg); //Visual C++2.0 macro
#endif
Didn't fix the problem...
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---