High boost filter.

The High-boost filter can be used to emphasize high frequency components (i.e. points of contrast) without removing the low frequency ones.

This filter implementation has been contributed by Diego Catalano.

Inheritance: Convolution
Example #1
0
 private void SetFilter()
 {
     ImageType = ImageTypes.Rgb32bpp;
     Af.HighBoost newFilter = new Af.HighBoost();
     newFilter.Divisor   = divisor;
     newFilter.Threshold = threshold;
     imageFilter         = newFilter;
 }