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