C#呼叫DLL實現影像文字識別(OCR)

weixin_30588675發表於2010-05-21

請先下載http://asprise.com/product/ocr/index.php?lang=csharp 的SDK.裡面提供了詳細的OCR方法,如下:

將發現影像框picbVeryfyCode裡的文字和文字框.txtVeryfyCode.Text是一致的.

數字識別率我碰到的幾乎是100%

http://blog.csdn.net/crabo/

[DllImport("AspriseOCR.dll")]
  static extern string craboOCR(string file, int type);

private void GetVeryfyCode()
  {
if(File.Exists(_imgPath))//ok now?
   {
    try
    {
    this.picbVeryfyCode.Image=System.Drawing.Bitmap.FromFile(_imgPath);
     _veryfyCode=craboOCR(_imgPath,-1);   //將返回string,並以"\r\n"結尾!!
     _veryfyCode=_veryfyCode.Substring(0,4);
     this.txtVeryfyCode.Text=_veryfyCode;
    }
    catch(Exception e)
    {
     this.lblResult.Text+=e.Message;
    }
   }
}

 

本文來自CSDN部落格,轉載:http://blog.csdn.net/crabo/archive/2005/12/08/547086.aspx

轉載於:https://www.cnblogs.com/NoRoad/archive/2010/05/21/1740801.html

相關文章