private void OkButton_Click(object sender, EventArgs e)
 {
     DialogResult = DialogResult.OK;
     param        = new ContoursAlgorithmParams
     {
         MedianFilterSize = (int)MedFilterUpDown.Value,
         Threshold        = (int)ContoursThresholdUpDown.Value
     };
 }
示例#2
0
 public Point GetCurrentLocation(ContoursAlgorithmParams param, Bitmap image, Bitmap areaMap)
 {
     throw new NotImplementedException();
 }
示例#3
0
 public Bitmap GetContours(Bitmap image, ContoursAlgorithmParams param)
 {
     throw new NotImplementedException();
 }
 public ContoursParamsForm()
 {
     InitializeComponent();
     param = null;
 }