tags:

views:

3448

answers:

3

I would like to build an app that OCR a pictures and get text from them.
What java library should i use?

+5  A: 

If you are looking for a very extensible option or have a specific problem domain you could consider rolling your own using the Java Object Oriented Neural Engine.

I used it successfully in a personal project to identify the letter from an image such as this, you can find all the source for the OCR component of my application on github, here.

Dave Tapley
Thx for your answer; nice work!I'm trying to find something easier and ready to use, anyway thanks :).
systempuntoout
Ah I thought that might be the case. I remember looking at several existing more 'complete' solutions as well (I can't remember which ones), but I wasn't very impressed with the offerings. I hope you have more success!
Dave Tapley
+4  A: 

Don't know how good it is (it definitely needs to be trained first), but there is Ron Cemer's Java OCR library.

Thilo
Thanks Thilo, nice find!
systempuntoout