Abinaya

Abinaya

  • NA
  • 9
  • 2.7k

the Type or namespace name ‘ImageProcessing’ is missing

Apr 4 2014 5:12 AM

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)