8
Answers

the Type or namespace name ‘ImageProcessing’ is missing

Abinaya

Abinaya

10y
2.8k
1

The following is the code fOr Median Filter . Am getting Error as ---- the Type or namespace name ‘ImageProcessing’ does not exist in the namespace ‘System’(are you missing an assembly reference)?

private void medianToolStripMenuItem_Click(object sender, EventArgs e)

{

Bitmap img = new Bitmap(pictureBox1.Image);

pictureBox1.Image = img;

img = System.ImageProcessing.BitmapImage.MedianFilter(img);

pictureBox1.Image = (Image)img;

MessageBox.Show("Successfully Done");

}

How to resolve this error? Please help..

Answers (8)