コード例 #1
0
 public RemoveBackgroundFilter(FilterContext context)
 {
     this.context = context;
     Threshold    = 8;
     subtract     = new Subtract();
 }
コード例 #2
0
 public RemoveBackground(FilterContext context)
     : base(new RemoveBackgroundFilter(context), context)
 {
     InitializeComponent();
     trackBarThreshold_ValueChanged(trackBarThreshold, EventArgs.Empty);
 }
コード例 #3
0
 public Max(FilterContext context)
     : base(new MaxFilter(), context)
 {
     InitializeComponent();
     trackBarMin_ValueChanged(trackBarMin, EventArgs.Empty);
 }
コード例 #4
0
 public Normalization(FilterContext context)
     : base(new ContrastStretch(), context)
 {
     InitializeComponent();
 }
コード例 #5
0
 public ConnectedComponents(FilterContext context)
     : base(new ConnectedComponentsLabeling(), context)
 {
 }