我正在尝试在我的照片上应用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中是如此新鲜。
我的输出
我需要这个结果。
我只需要应用此过滤器
答案 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 );
该函数采用以下参数:
我希望它支持你的问题。