Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does anyone know of a good free or cheap (under £100/$200) OCR library? It needs to run on Windows and preferably be a .NET library, though a COM interface is fine.

share|improve this question
14  
This is a great question. I don't know why it's closed. – Jim Thio Sep 13 '12 at 3:40
7  
@JimThio : moderators have simply ruined Stackoverflow, it's really a shame. – Mauricio Scheffer Sep 13 '12 at 4:54
any final solution with full source code? – Kiquenet Oct 4 '12 at 13:39
5  
Agreed that closing this was pretty silly. – Ken Smith Oct 27 '12 at 3:39

closed as not constructive by Kev Jun 5 '12 at 23:22

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

5 Answers

up vote 14 down vote accepted

tessnet (http://www.pixel-technology.com/freeware/tessnet2/) is an open-source .NET OCR engine based on tesseract

share|improve this answer
Unfortunately it requires Visual C++ 2005 Runtime which means yet another bootstrapper for installs. – chaiguy Jan 24 '09 at 19:52
1  
Also tessnet2 is not usable for real life project due to lots of memory leaks. – 62316e Nov 16 '11 at 12:09
2  
If tessnet2 has mem leaks, why not help fix them instead of complaining about it? I don't see a real alternative. – Mauricio Scheffer Jan 6 '12 at 18:22
2  
@62316e = Memory leaks are not an issue as you run this in a separate process and use interprocess communication (e.g., named pipes, WCF, or process.start and read a file if you only have a job/sec to do). Then it fins and windows cleans up the leaks. Yes it is a PITA but not compared to other real-life IT problems. It only took me 3 hours and then I had free OCR. I also had to jump thru a few other small hoops, e.g., resizing input graphics to get better read ratios, super easy compared to paying or who knows how else, just do it and reap the rewards. – FastAl Jan 21 at 15:47
1  
@FastAl : indeed, that's exactly what I recommend in a related answer: stackoverflow.com/a/4847710/21239 for parallelizing tesseract. – Mauricio Scheffer Jan 21 at 17:20
show 3 more comments

as Jon Galloway describes the Microsoft Office Document Imaging libraries included with Microsoft Office are available on many computers, and easy to automate with .net.

Jon lists a few others in his article.

MODI has been excluded from Office 2010, but can still be used with Office 2010, as described in this knowledge base article.

share|improve this answer
14  
Hey, I was gonna post all that stuff! I want some karma points off your answer, Leon! :-) – Jon Galloway Sep 12 '08 at 19:38
1  
Is there an updated link to the CodeProject article? Link is broken. – chaiguy May 1 '11 at 2:35
There doesn't seem to be a new CodeProject article, but codeproject.com/KB/office/modi.aspx is a good alternative. – Chris R Dec 5 '11 at 23:42
1  
Also - MODI is an optional install with Office XP/2007, and is not available in Office 2010. – Chris R Dec 5 '11 at 23:43

maybe not exactly what you are looking for, but this might point you to the right direction.

The code below is a unmodified copy/paste from the source. (only given to let the readers easily find the essence of this solution in one place)
Original Author: Martin Welker

_MODIDocument = new MODI.Document(); 
_MODIDocument.Create(filename);

// The MODI call for OCR
_MODIDocument.OCR(_MODIParameters.Language,
_MODIParameters.WithAutoRotation,
_MODIParameters.WithStraightenImage);


// add event handler for progress visualisation
_MODIDocument.OnOCRProgress +=
new MODI._IDocumentEvents_OnOCRProgressEventHandler(this.ShowProgress);
public void ShowProgress(int progress, ref bool cancel)
{
statusBar1.Text = progress.ToString() + "% processed.";
}
axMiDocView1.Document = _MODIDocument;

private void Statistic()
{
// iterating through the document's structure doing some statistics.
string statistic = "";
for (int i = 0 ; i < _MODIDocument.Images.Count; i++)
{
int numOfCharacters = 0;
int charactersHeights = 0;
MODI.Image image = (MODI.Image)_MODIDocument.Images[i];
MODI.Layout layout = image.Layout;
// getting the page's words

for (int j= 0; j< layout.Words.Count; j++)
{
MODI.Word word = (MODI.Word) layout.Words[j];
// getting the word's characters

for (int k = 0; k < word.Rects.Count; k++)
{
MODI.MiRect rect = (MODI.MiRect) word.Rects[k];
charactersHeights += rect.Bottom-rect.Top;
numOfCharacters++;
}
}
float avHeight = (float )charactersHeights/numOfCharacters;
statistic += "Page "+i+ ": Avarage character height is: "+
avHeight.ToString(" 0.00 ") +" pixel!"+ "\r\n";
}
MessageBox.Show("Document Statistic:\r\n"+statistic);
}

// initialize MODI search
MODI.MiDocSearchClass search = new MODI.MiDocSearchClass();
search.Initialize(
_MODIDocument,
_DialogSearch.Properties.Pattern,
ref PageNum,
ref WordIndex,
ref StartAfterIndex,
ref Backward,
MatchMinus,
MatchFullHalfWidthForm,
MatchHiraganaKatakana,
IgnoreSpace);

MODI.IMiSelectableItem SelectableItem = null;

// the one and only search call
search.Search(null,ref SelectableItem);

It uses the Microsoft Office Document Imaging Library from office 2003 to provide the OCR functionality for your application (need to add a reference to MDIVWCTL.DLL).

share|improve this answer

Google open sourced an OCR engine called tessaract. I am not sure though how is to check that out...

share|improve this answer
any final solution with full source code? – Kiquenet Oct 4 '12 at 13:39

The best OCR engine is tesseract. You can check how it works in this online OCR tool.

share|improve this answer
Best? heck no, definitely not the best - but definitely the best for the price and for many projects that's difference between having, or completely excluding labor-saving OCR features; it was for my project (it had no budget!). – FastAl Jan 21 at 15:49

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