| imclose | The morphological closing on an image is defined as an dilation followed by
a erosion. Opening can remove small dark intensities and connect
small bright regions.
|
| imdilate | Mathematical dilation computes for every pixel (i,j) the maximum
over all pixels in the window centered at (i,j), according to
the given mask.
|
| imerode | Mathematical erosion computes for every pixel (i,j) the minimum
over all pixels in the window centered at (i,j), according to
the given mask.
|
| imopen | The morphological opening on an image is defined as an erosion followed by
a dilation. Opening can remove small bright intensities and connect
small dark regions.
|
| morph_filter | Generic prototype for ANY morphological filter in this module
|
| strel | Implementation of some much-used structure elements for morphology.
|