在emgucv中应用sobel滤波器进行边缘检测

时间:2015-12-27 19:12:10

标签: c# c++ opencv image-processing emgucv

我正在尝试在我的照片上应用Sobel滤镜来检测边缘,如下所示:

Image<Gray, Byte> imgProcessed1;
private void Form1_Load(object sender, EventArgs e)
{



    Image<Bgr, Byte> imgProcessed=new Image<Bgr, byte>(@"C:\Users\Public\Pictures\Sample Pictures\1.jpg");

    imgProcessed1 = imgProcessed.Convert<Gray, byte>();
    Image<Gray, Single> img_final = (imgProcessed1.Sobel(1, 0, 5));
    pictureBox1.Image = img_final.ToBitmap();
}

但结果非常不寻常,我在opencv中是如此新鲜。

我的输出

enter image description here

我需要这个结果。

enter image description here

我只需要应用此过滤器

enter image description here

2 个答案:

答案 0 :(得分:4)

谢谢你我所有的朋友,我终于找到了解决方案:

Image<Gray, byte> gray = new Image<Gray, byte>(@"C:\Users\Public\Pictures\Sample Pictures\1.jpg");
            Image<Gray, float> sobel = gray.Sobel(0, 1, 3).Add(gray.Sobel(1, 0, 3)).AbsDiff(new Gray(0.0));
            pictureBox1.Image = sobel.ToBitmap();

答案 1 :(得分:2)

根据opencv文档:

http://docs.opencv.org/2.4/doc/tutorials/imgproc/imgtrans/sobel_derivatives/sobel_derivatives.html

您应该通过以下方式使用sobel运算符:

Sobel( src_gray, grad_x, ddepth, 1, 0, 3, scale, delta, BORDER_DEFAULT );

该函数采用以下参数:

  1. src_gray:在我们的示例中,输入图像。这是CV_8U
  2. grad_x / grad_y:输出图像。
  3. ddepth:输出图像的深度。我们将其设置为CV_16S以避免 溢出。
  4. x_order:x方向导数的顺序。
  5. y_order:y方向导数的顺序。
  6. scale,delta和BORDER_DEFAULT:我们使用默认值。
  7. 我希望它支持你的问题。