tags:

views:

238

answers:

3
+1  Q: 

Java OCR package

what is the best OCR package you've used with java?

I need to parse mainly numbers in a single font and am looking for a well architected, lite weight library to use.

thanks.

+1  A: 

Some time ago I needed a Java OCR library too, but I couldn't find a free one. So I ended wrapping tesseract which works great for clear fonts.

nandu
is tesserect plain java or does it require native code to be installed?
pstanton
No, if I remember well tesseract is C++. You have to execute it on command line and use the output.
nandu
A: 

apparently there is no pure java ocr package...

there are however java apis which wrap calls to native interfaces.

if anyone can find a pure java ocr that works, post another answer and i'll give the tick...

pstanton
A: 

If you're ok with using an external, online API, consider http://www.wisetrend.com/wisetrend_ocr_cloud.shtml

Eugene Osovetsky