Hi All,
As showing i have an image with fields Username & City & Work as in the image. I just want to read these Character fields value from this image with java program. If any one have any idea about this please let me know
thanks
Hi All,
As showing i have an image with fields Username & City & Work as in the image. I just want to read these Character fields value from this image with java program. If any one have any idea about this please let me know
thanks
You can google with Java Character recognition through image and there is also good way to do this with this example. this jar you can use as for testing
Tess4J, a Java wrapper of Tesseract engine, can recognize such images (after rescaling to 300 DPI).
You should start looking into character recognizing libraries like shown here. also, look at this question here
To read the image you can use BufferedImage: http://docs.oracle.com/javase/tutorial/2d/images/loadimage.html
Once you have loaded the image you can run an OCR module to get its text. Here are some examples of OCR software sorted from better to worst: ABBYY (but it is not free), Tesseract, Java OCR, Asprise...
And that is all !!