A string corresponding to the name of a morphological
operation to apply to the image (see Note).
kernel
A binary matrix.
k_shape
A string corresponding to the shape of the kernel for the
morphological operation (see Note; default: "rectangle"). Ignored if a
custom kernel is provided.
k_height
The half-height in pixels of the kernel. Ignored if a custom
kernel is provided.
k_width
The half-width in pixels of the kernel. Ignored if a custom
kernel is provided.
iterations
The number of times the morphological operations should be
applied.
target
The location where the results should be stored. It can take 3
values:
"new":a new Image object is created and the results
are stored inside (the default).
"self":the results are stored back into image (faster but
destructive).
An Image object:the results are stored in another
existing Image object. This is fast and will not replace the
content of image but will replace that of target. Note that
if target does not have the same dimensions, number of channels,
and bit depth as image, an error will be thrown.
in_place
Deprecated. Use target instead.
Value
If target="new", the function returns an Image
object. If target="self", the function returns nothing and modifies
image in place. If target is an Image object,
the function returns nothing and modifies that Image object in
place.