watershed function provided by EmguCv
问题 I want to use watershed function provided by emgucv.I used the following code but all I get is a white picture.Please help me and correct this code.Thanks. Image im; Bitmap bm; Bitmap bmF; private void button1_Click(object sender, EventArgs e)//setting the background image { if (openFileDialog1.ShowDialog() == DialogResult.OK) { im = Image.FromFile(openFileDialog1.FileName); bm = new Bitmap(im); } panel1.BackgroundImage = im; panel1.Width = im.Width; panel1.Height = im.Height; panel1.Visible