This is the code which i have implemented but i have n't got output what 
mistake i have done?
 Bitmap image = new Bitmap(@"C:\Users\LAB-II_SYS-6\Desktop\8983167.png");
            tessnet2.Tesseract ocr = new tessnet2.Tesseract();
          
            ocr.Init(@"D:\temp", "eng", false); // To use correct tessdata
            List<tessnet2.Word> result = ocr.DoOCR(image, Rectangle.Empty);
            foreach (tessnet2.Word word in result)
            {
                Console.WriteLine("{0} : {1}", word.Confidence, word.Text);
                MessageBox.Show(word.Text);
            }

-- 
-- 
You received this message because you are subscribed to the Google
Groups "tesseract-ocr" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/tesseract-ocr?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
"tesseract-ocr" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to