示例#1
0
 /// <summary>
 /// crear form con la imagen con el brillo y el contraste modificados
 /// </summary>
 /// <param name="dat"></param>
 /// <param name="ntrames"></param>
 public void createImageBC(double b, double c, double newb, double newc)
 {
     ImageForm Image2 = new ImageForm();
     Image2.MdiParent = this;
     Image2.Text = "Imagen brillo y contraste modificados";
     Image2.loadbc(b, c, newb, newc, p_);
     Image2.Show();
     writePanel();
 }