Joined July 2014
·

eranga bandara

Colombo
·
·

Posted to Tips to be productive as a programmer over 1 year ago

Thanks :) ..

Posted to Tesseract with andoird and gradle over 1 year ago

Did you build the tesseract library with android-ndk ??
Seems like "liblept.so" (shared library) file can not found on specific library path

Posted to Setting Up Terminator (Terminal ++) over 1 year ago

Further customize the terminal with oh-my-zsh :)
https://coderwall.com/p/g801fg

Posted to Customize terminal with oh-my-zsh over 1 year ago

Thanks for your information :)

Posted to Tesseract with andoird and gradle over 1 year ago

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)

Posted to Keep your dotfiles in git over 1 year ago

@dpashkevich Thanks :)

Posted to Tesseract with andoird and gradle over 1 year ago

What is the gradle version you have installed?

Posted to Tesseract with andoird and gradle over 1 year ago

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).

Achievements
4,622 Karma
2,463,512 Total ProTip Views