This is a discussion on Optical Character Recognition in C#.NET. Reading text from images in C#.NET within the C# Programming forums, part of the Software Development category; Optical Character Recognition in C#.NET. Reading text from images in C#.NET Objective: Reading Text values from images or ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| Optical Character Recognition in C#.NET. Reading text from images in C#.NET Objective: Reading Text values from images or Optical Character Recognition in C#.NET Steps: Microsoft given a wonderful COM component called MODI(Microsoft Office Document Imaging Library)for reading text values from an image file. Following C# snippets will read the text values from the given image and will display in a Message Box. MODI.Document Doc = new MODI.Document(); Doc.Create(Yourimagefilename); Doc.OCR(MODI.MiLANGUAGES.miLANG_ENGLISH, false, false); MODI.Image img = (MODI.Image)Doc.Images[0]; MessageBox.Show(img.Layout.Text); |
| Sponsored Links |
![]() |
| Thread Tools | |
| Display Modes | |
| |
LinkBacks (?)
LinkBack to this Thread: http://www.discussweb.com/c-programming/2087-optical-character-recognition-c-net-reading-text-images-c-net.html | |||
| Posted By | For | Type | Date |
| hosting image - Optical Character Recognition in C#.NET. Reading text from images ... | This thread | Refback | 07-18-2007 08:54 AM |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Reading IPTC data from Nikon camera RAW images,JPEG,TIFF files using Adobe dll in C# | oxygen | C# Programming | 1 | 02-28-2008 11:33 PM |
| How do I check that text entered in a text form field is an integer? | itbarota | HTML, CSS and Javascript Coding Techniques | 2 | 10-26-2007 12:25 AM |
| Is there a way to do optical character recognition in Windows Mobile ? | itbarota | Windows Mobile | 0 | 07-23-2007 06:54 AM |
| How to Encode a text and Decode it to get the original text using c# .Net? | Archer | C# Programming | 1 | 07-21-2007 01:10 AM |
| Reading and writing EXIF meta data from jpg/jpeg,tiff images | oxygen | C# Programming | 0 | 07-15-2007 11:24 PM |