I would like to build an Android application that, via an OCR library, should scan a picture extracting text from it .

What Java library should I use?

link|improve this question

feedback

5 Answers

up vote 10 down vote accepted

Don't know how good it is (it definitely needs to be trained first), but there is Ron Cemer's Java OCR library.

link|improve this answer
Thanks Thilo, nice find! – systempuntoout Mar 15 '10 at 8:12
feedback

If you are looking for a very extensible option or have a specific problem domain you could consider rolling your own using the Java Object Oriented Neural Engine.

I used it successfully in a personal project to identify the letter from an image such as this, you can find all the source for the OCR component of my application on github, here.

link|improve this answer
Thx for your answer; nice work!I'm trying to find something easier and ready to use, anyway thanks :). – systempuntoout Jun 30 '09 at 10:41
Ah I thought that might be the case. I remember looking at several existing more 'complete' solutions as well (I can't remember which ones), but I wasn't very impressed with the offerings. I hope you have more success! – Dave Tapley Jul 1 '09 at 10:17
feedback

try tesseract, checkout this article http://www.itwizard.ro/interfacing-cc-libraries-via-jni-example-tesseract-163.html and this example http://code.google.com/p/mezzofanti/

Edit: some more facts - tesseract is one of the best open source OCR used by google - there is training data available for many languages - mezzofanti is an android app that uses tesseract - beware: OCR does use a lot of CPU power. trying to OCR a A4 page with your T-Mob G1 will take a lot of time and the result may not impress you ;-)

link|improve this answer
looks promising – systempuntoout Feb 14 '11 at 11:29
doesnt work at all – the100rabh May 20 '11 at 4:33
exactly what does not work for you? – raudi Jun 10 '11 at 8:41
tesseract does work but its reading ability is quite poor for even the simplest text. – mP. Jun 26 '11 at 11:19
feedback

As far as i know there are no native opensource Java OCR SDKs. There are Java APIs which wrap calls for native interfaces, for example, for one of the most popular opensource OCR engines - Tesseract (http://groups.google.com/group/tesseract-ocr/) - there are some Java wrappers like tesjeract (http://code.google.com/p/tesjeract/) or Tess4J (http://tess4j.sf.net/). That could work for you, but it's rather hard to set up and will require developing image-preprocessing and font training on your side.

One more solution could be a cloud service. It requires end-user application to have the internet connection, but it's independent from your programming language choice and resources limitations (which is importatnt on mobile devices, OCR proccess consumes rather big amount of recources). Have a look at www.ocrsdk.com for android ocr, it's a cloud-based OCR SDK that let you upload an image through web API and returns you the OCRed data.

This Web API based OCR SDK is not free, which may not be suitable for you, but i still recommend you try it out (it has a free 90 days trial without any upfront charges) as its pricing is really affordable in comparison with enterprise solutions while it provides enterprise-level OCR accuracy which is way better than open source.

You may also find useful this Android codesample at github (you need to get API key at http://ocrsdk.com to use it). Disclamer: i work @ ABBYY.

link|improve this answer
feedback

You can use the OCR feature from Google Docs. Check the Documents List Data API http://code.google.com/apis/documents/docs/3.0/developers_guide_protocol.html#OCR

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.