Does anyone know any available libraries or sample codes that can be

  • Replies:1
davidmiller
  • Forum posts: 2

Sep 3, 2016, 10:37:42 AM via Website

Does anyone know any available libraries or sample codes that can be used to develop an app that reads the text in an image captured by the camera? Something similar to Google Goggles but only for reading text.

Reply
Vladimir S.
  • Forum posts: 266

Sep 3, 2016, 12:08:20 PM via Website

Tesseract - multiplatform opensource OCR library. Import to the project:

dependencies {
    compile 'com.rmtheis:tess-two:5.4.1'
}

Language packs can be downloaded here

Example: Tess-two

— modified on Sep 3, 2016, 12:10:01 PM

Reply