Dear,
I am new to tesseract, can any1 suggest documentation for tessnet
(tesseract for .net) for methods and their usage, also i am facing
difficulty in processing simple captcha image which is provided in attached
file, and below is the code
if (this.m_image == null || string.IsNullOrEmpty(this.txtLang.Text))
return;
this.progressBar1.Value = 0;
this.lstResult.Items.Clear();
Tesseract tesseract = new Tesseract();
tesseract.SetVariable("tessedit_char_whitelist", "0123456789");
// If digit only
tesseract.Init(this.txtPath.Text, this.txtLang.Text, false);
tesseract.ProgressEvent += new
Tesseract.ProgressHandler(this.ocr_ProgressEvent);
tesseract.OcrDone = new Tesseract.OcrDoneHandler(this.Done);
tesseract.DoOCR(this.m_image, Rectangle.Empty);
please reply
--
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].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/tesseract-ocr.
To view this discussion on the web visit
https://groups.google.com/d/msgid/tesseract-ocr/efaa65dc-2a95-4e8e-97d8-a1992e029441%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.