0

i am working on an android OCR application, for that i am using Tesseract. Therefor it is necessary to do tess-two buidling first. I actually completed tess-two building but i don't know whether tess-two building completed successfully or not.

following is the directory of tess-two after building:

enter image description here

Bruce P
  • 19,995
  • 8
  • 63
  • 73
Junaid Ahmad
  • 43
  • 1
  • 6
  • How did you build tess-two? From the command line? Using ndk-build? From Android Studio? Were there any errors or message? The presence of the obj and libs directories indicates something was build, but doesn't tell us if it was built successfully. – Francesca Nannizzi Feb 17 '16 at 19:46
  • sir i have followed this link http://androidadvance.com/blog/tutorial-getting-started-with-tessaract-ocr-in-android-android-studio/ but this post has lack of details – Junaid Ahmad Feb 17 '16 at 20:19
  • Sir now i found pre-built tess-two library from this site http://androidtesstwo.blogspot.com/2014/03/making-android-ocr-app-using-tess-two.html and succesfully imported to my android studio application. soon i will make video tutorial on it. – Junaid Ahmad Feb 17 '16 at 20:23
  • Good for you! Good luck on the video tutorial. – Francesca Nannizzi Feb 17 '16 at 20:31
  • If you're using Android Studio you can also [use](https://github.com/rmtheis/tess-two#usage) the project without having to build it yourself. – rmtheis Feb 20 '16 at 17:30

1 Answers1

0

Generally if you saw BUILD SUCCESSFUL in your terminal when you ran the final build step, then it did in fact complete successfully. You should have *.so files in your libs directory.

You can run the tess-two-test instrumented test cases to double check.

rmtheis
  • 5,992
  • 12
  • 61
  • 78