Posts tagged tesseract
Improving Tesseract OCR results on the iOS platform
1If you’ve found yourself using Tesseract on the iOS platform, and you’re scratching your head as to why the OCR results are so terribly incorrect, you might be interested in the following. Most of the tesseract iOS tutorials talk about compiling the libraries, but don’t really cover how to use it.
Are you using something like this to interface with the tesseract API?
char* text = tess->TesseractRect(imageData,(int)bytes_per_pixel,(int)bytes_per_line, 0, 0,(int) imageSize.height,(int) imageSize.width); NSLog(@"Converted text: %@",[NSStringstringWithCString:text encoding:NSUTF8StringEncoding]);
I was using this to start with, and the results were terrible, if it was able to read anything it was mostly returning special characters or just utter nonsense.
Tesseract OCR on Android is easier if you Maven-ise it, works on Windows too…
3I’ve spent the past few months working on an android application that involves an element of OCR capability, its been quite a painful journey so this is my attempt to reflect on these experiences and hopefully help others who follow in my path.



