我如何使用Emgu CV _SmoothGausian方法

时间:2012-08-13 02:53:55

标签: c#-4.0 gaussian emgucv computer-vision

我试图让OCR示例应用程序识别一些小文本,我正在做的是调整图像大小。一旦我调整了图像大小,它就是'pixel-ee'

我想使用SmothGaussian方法进行清理,但每次执行方法时都会出错

以下是代码:

Image<Bgr, Byte> image = new Image<Bgr, byte>(openImageFileDialog.FileName);

           using (Image<Gray, byte> gray = image.Convert<Gray, Byte>().Resize(800, 600, Emgu.CV.CvEnum.INTER.CV_INTER_LINEAR, true))
           {

               gray.Convert<Gray, Byte>()._SmoothGaussian(4);



              _ocr.Recognize(gray);
              Tesseract.Charactor[] charactors = _ocr.GetCharactors();
              foreach (Tesseract.Charactor c in charactors)
              {
                  image.Draw(c.Region, drawColor, 1);
              }

              imageBox1.Image = image;

              //String text = String.Concat( Array.ConvertAll(charactors, delegate(Tesseract.Charactor t) { return t.Text; }) );
              String text = _ocr.GetText();
              ocrTextBox.Text = text;
           }

这是图片:

enter image description here

1 个答案:

答案 0 :(得分:1)

_SmoothGaussian只能将奇数作为内核大小处理,所以请尝试使用3或5作为参数。