Charles Weld
Charles Weld
Can anyone see if this is resolved for AWS Linux in the latest release (3.3). I've implemented the fixes discussed in #433. Note you will need to bundle the tesseract...
I don't think this is possible as the in memory streaming (i.e. pixReadMemPng()) is not available on windows. That being said most of the api's do support loading a Pix...
I was thinking of splitting of the System.Drawing (i.e Bitmap) support into a separate package might be the way to go here. It should be possible to target it at...
@Abhijeet501 The PR tdhintz is referring to is https://github.com/charlesw/tesseract/pull/369 and should help your situation. I'm a little hesitant to add it to the wrapper itself as I'd like to keep...
It mustn't be supported in that version of leptonica, we just use pixReadMemTiff. I've just released version 4.1 (targeting tesseract 4.1 and leptonica 1.78) which might resolve the issue. While...
I was thinking a better way of dealing with this would be to support falling back on just using the generic load dynamic library routine (i.e. standard search paths). That...
Yes that's certainly an option, does anyone else have any opinions here? I don't have much experience with Linux so not sure of current best practices here. Note I don't...
Sorry I'm not 100% sure what your asking. From reading your issue it sounds like you're attempting to upgrade to the latest version the library however it's not working in...
If it's an intermediate issue then that screams a threading issue to me. Tesseract isn't threadsafe and a single instance can't be used concurrently. I noticed from your stack trace...
Your correct in that multiple separate instances of tesseract can be used concurrently. I had a closer look at the library loading code and there may be an issue if...