tags:

views:

947

answers:

3
+3  Q: 

free OCR library

can any one suggest a free ocr library dot net or java for me. I needto convert images containing text to word documents. The input images will be of tyy .tiff,.gif,.bmp.jpg.

+2  A: 

Check this question : http://stackoverflow.com/questions/971344/java-based-ocr-sdk-api

Shoban
+2  A: 

I've found this to be slower than Microsoft Office Document Imaging's OCR component, but if MODI isn't an option for you and you have time to write a little wrapper code if you need to use .Net, you can use Tesseract.

AJ
+1 for Tesseract.
Jeremybub
can MODI (microsoft office doc imaging ) recoznize hand written characters?
No, it does not recognize handwriting, and I am fairly certain that you won't find anything free that does. Not to mention that handwriting recognition is largely a crapshoot. I've done a fair amount of analysis on both OCR and ICR (handwriting) tools, and found none that could consistently recognize handwriting.
AJ
A: 

If you're ok with using an external, web-based API to do the OCR, take a look at http://www.wisetrend.com/wisetrend_ocr_cloud.shtml

Sample code in .NET (C#) to use this: http://snipt.org/lOgh/

The API handles BMP, JPG, TIF and other image formats

Eugene Osovetsky