Is there any free OCR library for Android?

AndroidOcr

Android Problem Overview


I'm looking for a Java OCR that runs on Android, however Asprise doesn't seem to be a platform independent OCR. is there any opensource/free Java OCR I can use for android application development?

Android Solutions


Solution 1 - Android

OCR can be pretty CPU intensive, you might want to reconsider doing it on a smart phone.

That aside, to my knowledge the popular OCR libraries are Aspire and Tesseract. Neither are straight up Java, so you're not going to get a drop-in Android OCR library.

However, Tesseract is open source (GitHub hosted infact); so you can throw some time at porting the subset you need to Java. My understanding is its not insane C++, so depending on how badly you need OCR it might be worth the time.

So short answer: No.

Long answer: if you're willing to work for it.

Solution 2 - Android

I am having quite a lot of luck with tesseract-android-tools

Solution 3 - Android

ANother option could be to post the image to a webapp (possibly at a later moment), and have it OCR-processed there without the C++ -> Java port issues and possibly clogging the mobile CPU.

Solution 4 - Android

Google Goggles is the perfect application for doing both OCR and translation.
And the good news is that Google Goggles to Become App Platform.

Until then, you can use IQ Engines.

Solution 5 - Android

Yes there is.

But OCR is very vast. I know an Android application that has an OCR feature, but that might not be the kind of OCR you are looking after.

This open-source application is called http://code.google.com/p/aedict/">Aedict</a>;, and it does OCR on handwritten Japanese characters. It is not that slow.

If it is not what you are looking for, please precise which kind of characters, and which data input (image or X-Y touch history).

Solution 6 - Android

You can use the google docs OCR reader.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionuser121196View Question on Stackoverflow
Solution 1 - AndroidKevin MontroseView Answer on Stackoverflow
Solution 2 - AndroidBen PearsonView Answer on Stackoverflow
Solution 3 - AndroidJacoView Answer on Stackoverflow
Solution 4 - AndroidharrymcView Answer on Stackoverflow
Solution 5 - AndroidNicolas RaoulView Answer on Stackoverflow
Solution 6 - AndroidrichardwidenView Answer on Stackoverflow