[tesseract-ocr] Error looking up function 'TessTextRendererCreate' on Mac

2015-09-04 Thread Hang Wen
Hi, I got the following error when trying to initialize TessAPI1() on Mac: Exception in thread "main" java.lang.UnsatisfiedLinkError: Error looking up > function 'TessTextRendererCreate': dlsym(0x7fb8dad55ca0, > TessTextRendererCreate): symbol not found > at

[tesseract-ocr] Re: Error looking up function 'TessTextRendererCreate' on Mac

2015-09-04 Thread Quan Nguyen
You'd need Tess4J 1.5, which is compatible with Tess 3.02. On Friday, September 4, 2015 at 5:59:00 AM UTC-5, Hang Wen wrote: > > Hi, > > I got the following error when trying to initialize TessAPI1() on Mac: > > Exception in thread "main" java.lang.UnsatisfiedLinkError: Error looking >> up

Re: [tesseract-ocr] Re: Error looking up function 'TessTextRendererCreate' on Mac

2015-09-04 Thread zdenko podobny
Or other way around: TessTextRendererCreate is tesseract 3.04 (C-API) function, so you need to upgrade your tesseract library. Zdenko You'd need Tess4J 1.5, which is compatible with Tess 3.02. On Friday, September 4, 2015 at 5:59:00 AM UTC-5, Hang Wen wrote: > > Hi, > > I got the following error

[tesseract-ocr] Re: Suggestions on running PDFs through Tesseract without losing vector graphics?

2015-09-04 Thread Jeff Breidenbach
But I would like to see an example PDF - one of the simpler ones - just to see how the vector graphics were done. Please do not get your hopes up. -- You received this message because you are subscribed to the Google Groups "tesseract-ocr" group. To unsubscribe from this group and stop

Re: [tesseract-ocr] Traineddata inspector

2015-09-04 Thread zdenko podobny
On Thu, Sep 3, 2015 at 9:41 AM, Jozef M. wrote: > Dear all, > > you can use the following web app to inspect some of the internals of > traineddata files: > https://te-traineddata-ui.herokuapp.com > > Few notes: > - this version does not parse cube specifics and some of the

[tesseract-ocr] Re: Suggestions on running PDFs through Tesseract without losing vector graphics?

2015-09-04 Thread Jeff Breidenbach
This would be ridiculously hard to implement. -- 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 tesseract-ocr+unsubscr...@googlegroups.com. To post to this

Re: [tesseract-ocr] Re: Tesseract gives the same results in cube mode, is this normal/common?

2015-09-04 Thread zdenko podobny
tessedit_ocr_engine_mode is init-only[1] parameter (INT_INIT_MEMBER [2]) e.g. you can set it only during initialization of tesseract. Otherwise it has no effect. [1] https://github.com/tesseract-ocr/tesseract/wiki/ControlParams#init-only [2]