3

Possible Duplicate:
android OCR?

i'm currently doing a project on text recognition based on a image capture in android phone. I want to ask how the text can be extracted from image?

Does have any openCV or OCR tesseract tutorial for extracting ?

Community
  • 1
  • 1
user1381427
  • 43
  • 1
  • 1
  • 4

1 Answers1

3

The fastest way (maybe not the ideal) is to implement the following steps:

  • Use OpenCV to detect the paper sheet or the text area;
  • Perform any processing necessary to deskew the image (if necessary);
  • Save the image to disk as TIFF;
  • and finally, call Tesseract cmd-line application passing the TIFF image as parameter to start the text recognition process.
Community
  • 1
  • 1
karlphillip
  • 87,606
  • 33
  • 227
  • 395