public RemoveBackgroundFilter(FilterContext context)
 {
     this.context = context;
     Threshold    = 8;
     subtract     = new Subtract();
 }
 public RemoveBackground(FilterContext context)
     : base(new RemoveBackgroundFilter(context), context)
 {
     InitializeComponent();
     trackBarThreshold_ValueChanged(trackBarThreshold, EventArgs.Empty);
 }
Exemplo n.º 3
0
 public Max(FilterContext context)
     : base(new MaxFilter(), context)
 {
     InitializeComponent();
     trackBarMin_ValueChanged(trackBarMin, EventArgs.Empty);
 }
Exemplo n.º 4
0
 public Normalization(FilterContext context)
     : base(new ContrastStretch(), context)
 {
     InitializeComponent();
 }
 public ConnectedComponents(FilterContext context)
     : base(new ConnectedComponentsLabeling(), context)
 {
 }