コード例 #1
0
 private void OkButton_Click(object sender, EventArgs e)
 {
     DialogResult = DialogResult.OK;
     param        = new PointsAlgorithmParams
     {
         SmallMedianFilterSize = (int)SmallMedFilterUpDown.Value,
         LargeMedianFilterSize = (int)LargeMedFilterUpDown.Value
     };
 }
コード例 #2
0
 public Point[] GetTrajectory(PointsAlgorithmParams param, params Bitmap[] images)
 {
     throw new NotImplementedException();
 }
コード例 #3
0
 public OffsetParamsForm()
 {
     InitializeComponent();
     param = null;
 }