If you ever tried to create an OCR app for Android you must have stumbled upon the OCR library by Google Tesseract. And then the problems began.
To use the library in your project you first need to build it. But building the library to be compatible with gradle, which is the new build system for Android projects is little not so easily stated anywhere in the library manual.
When I tried to build the library, it took me freaking 9 hours to figure all the how tos?
So, here I am helping you to save your precious hours. (Don’t waste these watching late night infomercials for god’s sake! ).
Here we go.
Step 1 :
The first step. Download the NDK. That is used to build the library.
Download it from here. It is around 300+ MB so keep your net plan nourished.
Step 2 :
Better way to go is to use a fork of Tesseract, Tess-Two. Tess-Two can be found on GitHub.
Execute following commands to build the library Tess-Two using NDK.
git clone git://github.com/rmtheis/tess-two tess
cd tess
cd tess-two
ndk-build
android update project --path .
ant release
We can live without building eyes-two for this time.
Building will take few minutes. After you have successfully built tess-two, give yourself a little treat. You are almost done.
Step 3 :
Now you are ready to use the library in your Android project.
Copy the tess-two folder (tess/tess-two), in the main folder of the application project.
Suppose name of your application is “MyApp” copy the folder at “MyApp/”.
Step 4 :
Now its time to play the trick. The library was build using ANT. But Android projects use Gradle these days. Interesting…
We need to add a “build.gradle” file at location “tess-two/”.
The build file can be found here.
Then include following line in project.settings file.
include ':tess-two'
Step 5 :
Build the project and you are just one step away from being done.
Step 6 :
The most important step. After completing steps 1-5, throw your hands up in the air! 😀 😀 You are now done!
Ready to harness the power of OCR.
Leave a Reply