On 9 June 2010 08:38, Genius Mchlachla <[email protected]> wrote: > Ok sorry about that. I want to use tesseract baseAPI (just basic OCR > functions, no training etc..) but I can't use .dll or .a libraries. So the > only way I thought of doing it was by copying all the header and .cpp files > into my Eclipse IDE c++ project. But when I compile, I get a whole bunch of > errors like [filename].h not found even though its right there. So thats the > problem. Thanks in advance. >
Oh God, this is like pulling teeth. What operating system are you using? Which compiler? 'Eclipse C++' doesn't cut it, because Eclipse CDT does not include a compiler. The basic problem is that you have not set up any references to the files. If you had created them in Eclipse, it would have tracked the references and taken care of it for you, but you've just dropped a bunch of files into a folder and expected that, magically, it would just work. http://www.eclipse.org/cdt/documentation.php RTFM -- <Leftmost> jimregan, that's because deep inside you, you are evil. <Leftmost> Also not-so-deep inside you. -- 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.

