vote up 8 vote down star
7

Hi,

I couldn't get anything out of google, so I ask: Do you know some free open source C# OCR library?

edit I need C# option, no coding of wrappers from C++ or similar stuff. the google library's website doesn't work - not sure if it ceased to exist or it's just unavailable which is very uncommon for Google websites.

flag

The Google Code pages are back. I guess they sometimes also have to undergo some maintenance. And obviously Google Code is not run with the same availability as google.com – divo Apr 13 at 20:04

4 Answers

vote up 3 vote down check

You can use Tesseract OCR in C# by following the instructions given in this question.

This blog post might also be of interest. Seems they got the source to compile on Windows.

link|flag
1  
Or you can go directly to tessnet wrapper site: pixel-technology.com/freeware/tessnet2/… – Marc Climent Sep 4 at 10:58
vote up 0 vote down

Have a look at OCRopus:

OCRopus is a [...] document analysis and OCR system, featuring pluggable layout analysis, pluggable character recognition, statistical natural language modeling, and multi-lingual capabilities.

The OCRopus engine is based on two research projects: a high-performance handwriting recognizer developed in the mid-90's and deployed by the US Census bureau, and novel high-performance layout analysis methods.

OCRopus is development is sponsored by Google and is initially intended for high-throughput, high-volume document conversion efforts. We expect that it will also be an excellent OCR system for many other applications.

(Quote from http://code.google.com/p/ocropus/)

OCRopus comes with C++ interfaces, so you would have to provide your own wrapper classes to C# though.

link|flag
I have no idea how to do wrapper class and I'd like some out-of-box stuff =/ – Skuta Apr 13 at 19:30
Writing a wrapper is actually not too difficult. If you are not familiar with it either try to find someone who can do it for you or ask for help here. – divo Apr 13 at 20:05
vote up 3 vote down

Google's own: http://code.google.com/p/tesseract-ocr/

link|flag
can't load the website – Skuta Apr 13 at 19:08
Works fine for me. – Alex Fort Apr 13 at 19:40
it doesn't look like library for C# – Skuta Apr 13 at 19:41
That's because it's not. You should just learn how to write a wrapper for it in C#. It should be as simple as P/Invoking the calls. – Alex Fort Apr 13 at 19:45
vote up 1 vote down

You can work with office 2007 OCR Engine. Look at this msdn reference for more information and sampe code.

link|flag
This solution is not open-source. – Ben S Apr 13 at 18:59
Not open source but wutever .Net has for now ==> codeproject.com/KB/office/… – CodeToGlory Apr 13 at 18:59
While not Open-Source, I have used this library succesfully in C# apps and it worked well. +1 – Simucal Apr 13 at 19:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.