Aforge填充孔过滤器导致黑色图像

时间:2014-02-13 12:32:31

标签: c# image image-processing bitmap aforge

我正在尝试使用Aforge库来填充生成的二进制图像中的空洞,问题是我得到的是黑色图像,而不是填充的图像。 非常感谢您的协助。

Bitmap bitImage = (Bitmap)pic.Image;
Bitmap bm = Convert(bitImage);
FillHoles filter = new FillHoles();
filter.CoupledSizeFiltering = true;
// apply the filter
pictureBox1.Image = filter.Apply(bm);

public Bitmap Convert(Bitmap bit)
{

    Grayscale filter = new Grayscale(0.2125, 0.7154, 0.0721);
    // apply the filter
    Bitmap bm = filter.Apply(bit);
    return bm;
}

0 个答案:

没有答案