0

Is there any simple way to extract Text from an image? I want to print that text in the console.

for instance, if I have an image as follows,

enter image description here

we should be able to print that 'TEXT' in the console.

Ilham Safeek
  • 217
  • 1
  • 5
  • 15
  • 1
    Possible duplicate of [Java OCR implementation](http://stackoverflow.com/questions/1813881/java-ocr-implementation) – dounyy May 10 '17 at 09:25
  • would you please use google for such trivial questions? what you are looking for is called OCR (optical character recogintion) – Piglet May 10 '17 at 09:25

1 Answers1

2

You should use OCR engine for this purposes.

Try https://github.com/tesseract-ocr/tesseract . It's an opensource engine.

Mike Adamenko
  • 2,944
  • 1
  • 15
  • 28