Perform a gray value dilation on an image.
grey_dilation applies a gray value dilation to the input image Image with the structuring element SE. For the generation of structuring elements, see load_grey_se.
Image (input_object) |
image(-array) -> object : byte |
Input image. |
SE (input_object) |
image -> object : byte |
Structuring element. |
ImageDilation (output_object) |
image(-array) -> object : byte |
Gray-dilated image. |
grey_dilation returns TRUE if the structuring element is not the empty region. Otherwise, an exception is raised.
grey_opening, grey_closing, dilation1, grey_skeleton__