CHEBURASHKA
CHEBURASHKA

Reputation: 1713

How to read images using Java API?

I have been using a piece of Software that works as a Reading Scanner. Basically it retrieves text from images. Is there any API for Java that would enable programmatically recognize text contained in images, in particular .tiff to regular text? Or is there any Java class that would help ... I do not know how to start

Upvotes: 2

Views: 3521

Answers (2)

istovatis
istovatis

Reputation: 1408

This question was answered in previous post.

Read

  1. Java OCR implementation

  2. Turn Image into Text - Java

  3. Read text from image file in Java

Upvotes: 1

joews
joews

Reputation: 30340

This type of problem is called Optical Character Recognition or OCR. The first Google result for "Java OCR" looks promising: http://sourceforge.net/projects/javaocr

Upvotes: 1

Related Questions