1 #ifndef vil_greyscale_opening_h_ 2 #define vil_greyscale_opening_h_ 25 #endif // vil_greyscale_opening_h_ Structuring element for morphology represented as a list of non-zero pixels.
Concrete view of image data of type T held in memory.
Perform greyscale dilation on images.
T vil_greyscale_erode(const vil_image_view< T > &image, unsigned plane, const vil_structuring_element &element, int i0, int j0)
Return max of pixels under structuring element centred at (i0,j0).
void vil_greyscale_opening(const vil_image_view< T > &src_image, vil_image_view< T > &dest_image, const vil_structuring_element &element)
Applies morphological opening operation with given structuring element.
T vil_greyscale_dilate(const vil_image_view< T > &image, unsigned plane, const vil_structuring_element &element, int i0, int j0)
Return max of pixels under structuring element centred at (i0,j0).
Perform greyscale erosion on images.