How can I use Tesseract in Android?

前端 未结 4 1576
悲哀的现实
悲哀的现实 2020-12-23 22:20

I have searched on the net for a couple of hours. I got many answers saying we need to use NDK, etc. for \"Tesseract\" for WINDOWS.

But I didn\'t get any step-by-ste

4条回答
  •  旧时难觅i
    2020-12-23 23:22

    This video shows you exactly how it is done

    How can I use Tesseract in Android?

    Make sure to: 1. Create the folder 2. in that folder you have to put the traineddata file (You can download it from here in the language you require https://github.com/tesseract-ocr/tessdata/tree/3.04.00 ) 3. Reference the path to the folder cointining the traineddata file and state the language: tessBaseApi.init(DATA_PATH, "eng");

    Hope it helps

提交回复
热议问题