morphological_geodesic_active_contour(gimage, iterations, init_level_set='circle', smoothing=1, threshold='auto', balloon=0, iter_callback=<function <lambda> at 0x0000000>)
Geodesic active contours implemented with morphological operators. It can be used to segment objects with visible but noisy, cluttered, broken borders.
This is a version of the Geodesic Active Contours (GAC) algorithm that uses morphological operators instead of solving partial differential equations (PDEs) for the evolution of the contour. The set of morphological operators used in this algorithm are proved to be infinitesimally equivalent to the GAC PDEs (see ). However, morphological operators are do not suffer from the numerical stability issues typically found in PDEs (e.g., it is not necessary to find the right time step for the evolution), and are computationally faster.
The algorithm and its theoretical derivation are described in .
Preprocessed image or volume to be segmented. This is very rarely the original image. Instead, this is usually a preprocessed version of the original image that enhances and highlights the borders (or other structures) of the object to segment. morphological_geodesic_active_contour
will try to stop the contour evolution in areas where gimage
is small. See morphsnakes.inverse_gaussian_gradient
as an example function to perform this preprocessing. Note that the quality of morphological_geodesic_active_contour
might greatly depend on this preprocessing.
Number of iterations to run.
Initial level set. If an array is given, it will be binarized and used as the initial level set. If a string is given, it defines the method to generate a reasonable initial level set with the shape of the :None:None:`image`
. Accepted values are 'checkerboard' and 'circle'. See the documentation of checkerboard_level_set
and :None:None:`circle_level_set`
respectively for details about how these level sets are created.
Number of times the smoothing operator is applied per iteration. Reasonable values are around 1-4. Larger values lead to smoother segmentations.
Areas of the image with a value smaller than this threshold will be considered borders. The evolution of the contour will stop in this areas.
Balloon force to guide the contour in non-informative areas of the image, i.e., areas where the gradient of the image is too small to push the contour towards a border. A negative value will shrink the contour, while a positive value will expand the contour in these areas. Setting this to zero will disable the balloon force.
If given, this function is called once per iteration with the current level set as the only argument. This is useful for debugging or for plotting intermediate results during the evolution.
Final segmentation (i.e., the final level set)
Morphological Geodesic Active Contours (MorphGAC).
The following pages refer to to this document either explicitly or contain code examples using this.
skimage.segmentation.morphsnakes.morphological_geodesic_active_contour
skimage.segmentation.morphsnakes.inverse_gaussian_gradient
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