Bottop-hat operator from Mathematical Morphology.

Bottom-hat morphological operator subtracts input image from the result of morphological closing on the the input image.

Applied to binary image, the filter allows to get all object parts, which were added by closing filter, but were not removed after that due to formed connections/fillings.

The filter accepts 8 and 16 bpp grayscale images and 24 and 48 bpp color images for processing.

Sample usage:

// create filter BottomHat filter = new BottomHat( ); // apply the filter filter.Apply( image );

Initial image:

Result image:

Inheritance: BaseInPlaceFilter
Example #1
0
 private void SetFilter()
 {
     ImageType = ImageTypes.Rgb24bpp;
     Af.BottomHat newFilter = new Af.BottomHat();
     imageFilter = newFilter;
 }