Hello,
This is the way I've called my ocr application..
private String doOcr(Bitmap bmp) {
baseApi.setImage(bmp);
String str = "";
try {
Log.d("My debug", "Going to ocr");
str = baseApi.getUTF8Text();
} catch (Exception ex) {
Log.d("My Debug", ex.toString());
}
return str;
}
I'm calling this function again and again in a loop (may be 800 to 1000 )
times. It works finely for the initial images, but at some point it would
give a fatal sigsegv error and there are no traces to find out what caused
the error.
Please advice me if you find anything wrong.
Thank 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