On Friday, 23 May 2014 10:04:46 UTC+2, Merve Temizer wrote: > > Hi, > > I learned a bit about how can i tell what i have to do. > > Before what i have to do; i must tell i have achieved to compile tesseract > from source, and run some standard test on that installation. > > I have noticed that i do NOT need exactly modify tesseract, instead, i > must write some line of code that uses tesseract APIs and compile that code > and run it. > > I remeber as i wrote in previous mail i was compiling this kind of code > with sth like > > g++ -LsomeLibrary -Lsomethingelse -I lotsofthiskindofneeding >
> Could i tell what i have to do? > This was changed with implementation of autotools. Now it you need to use: g++ -ltesseract ... and if you use also some leptonica function in your code (which could be expected) add also -llept Have a look at example in http://pastebin.com/0dV84hBa were is also compile command > > 21 Mayıs 2014 Çarşamba 18:44:59 UTC+3 tarihinde Nick White yazdı: >> >> Hi Merve. >> >> Tesseract uses autotools to manage its compilation. Instructions for >> it are here: https://code.google.com/p/tesseract-ocr/wiki/Compiling >> >> Beware though that if you couldn't figure this out, and have not >> compiled code for years, you may find Tesseract's code a bit of a >> challenge ;) >> >> Good luck! >> >> Nick >> > -- 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]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/tesseract-ocr. To view this discussion on the web visit https://groups.google.com/d/msgid/tesseract-ocr/229154e8-30d5-44c1-b199-baa47c2a73b8%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.

