grey_opening(input, size=None, footprint=None, structure=None, output=None, mode='reflect', cval=0.0, origin=0)
A grayscale opening consists in the succession of a grayscale erosion, and a grayscale dilation.
The action of a grayscale opening with a flat structuring element amounts to smoothen high local maxima, whereas binary opening erases small objects.
Array over which the grayscale opening is to be computed.
Positions of non-infinite elements of a flat structuring element used for the grayscale opening.
Structuring element used for the grayscale opening. structure may be a non-flat structuring element.
An array used for storing the output of the opening may be provided.
Value to fill past edges of input if mode is 'constant'. Default is 0.0.
The origin parameter controls the placement of the filter. Default 0
Multidimensional grayscale opening.
from scipy import ndimage
import numpy as np
a = np.arange(36).reshape((6,6))
a[3, 3] = 50
a
ndimage.grey_opening(a, size=(3,3))
# Note that the local maximum a[3,3] has disappeared
The following pages refer to to this document either explicitly or contain code examples using this.
scipy.ndimage._morphology:binary_opening
scipy.ndimage._morphology:black_tophat
scipy.ndimage._morphology:grey_erosion
scipy.ndimage._morphology:grey_closing
scipy.ndimage._morphology:grey_dilation
Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.
Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)
SVG is more flexible but power hungry; and does not scale well to 50 + nodes.
All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them