Ver Mensaje Individual
  #2 (permalink)  
Antiguo 11/10/2010, 05:40
Avatar de jahman
jahman
 
Fecha de Ingreso: noviembre-2003
Ubicación: Oslo
Mensajes: 230
Antigüedad: 21 años, 2 meses
Puntos: 0
Respuesta: OCR image en C#

Ya lo solucione y al q le interese aca expongo el codigo...


primero deben instalar office con la opcion
Microsoft Office Document Imaging 12.0 Type Library

y la agregan en references

Código:
using MODI;
....
string strFilename = @"mifoto.gif";
....


static string GetOCRText(string strFilename)
        {
            Document myOCRDoc = new Document();
            myOCRDoc.Create(strFilename);
            myOCRDoc.OCR(MODI.MiLANGUAGES.miLANG_ENGLISH, true, true);
            Image image = (Image)myOCRDoc.Images[0];
            Layout layout = image.Layout;
            string strRetVal = "";
            foreach (Word word in layout.Words)
            {
                Console.WriteLine("Word: {0} confidence: {1}", word.Text, word.RecognitionConfidence);
            }                      

            return strRetVal;
        }
y listo...ahh esto esta realizado en Console App.
saludos.