Did you build the tesseract library with android-ndk ??
Seems like "liblept.so" (shared library) file can not found on specific library path
Further customize the terminal with oh-my-zsh :)
https://coderwall.com/p/g801fg
How to do it with oh-my-zsh :)
https://coderwall.com/p/g801fg?i=11&p=1&q=author%3Aitseranga&t%5B%5D=itseranga
Thanks for your information :)
TessBaseAPI baseApi = new TessBaseAPI();
baseApi.setDebug(true);
baseApi.init(DATA_PATH, LANG);
baseApi.setImage(bitmap);
String recognizedText = baseApi.getUTF8Text();
baseApi.end();
(It described in the tutorial that I have posted in previous comment)
@dpashkevich Thanks :)
What is the gradle version you have installed?
Hi,
Following is a really good tutorial about tesseract android integration.
http://wolfpaulus.com/jounal/android-journal/android-and-ocr/
If you are using gradle to build your android app, you can use the build script that I have posted above(to build tesseract library as an android library project).
Thanks :) ..