Module: morphology
skimage.morphology.ball (radius[, dtype]) | Generates a ball-shaped structuring element. |
skimage.morphology.binary_closing (image[, selem]) | Return fast binary morphological closing of an image. |
skimage.morphology.binary_dilation (image[, ...]) | Return fast binary morphological dilation of an image. |
skimage.morphology.binary_erosion (image[, selem]) | Return fast binary morphological erosion of an image. |
skimage.morphology.binary_opening (image[, selem]) | Return fast binary morphological opening of an image. |
skimage.morphology.black_tophat (image[, selem]) | Return black top hat of an image. |
skimage.morphology.closing (image[, selem]) | Return greyscale morphological closing of an image. |
skimage.morphology.convex_hull_image (image) | Compute the convex hull image of a binary image. |
skimage.morphology.convex_hull_object (image) | Compute the convex hull image of individual objects in a binary image. |
skimage.morphology.cube (width[, dtype]) | Generates a cube-shaped structuring element. |
skimage.morphology.diamond (radius[, dtype]) | Generates a flat, diamond-shaped structuring element. |
skimage.morphology.dilation (image[, selem]) | Return greyscale morphological dilation of an image. |
skimage.morphology.disk (radius[, dtype]) | Generates a flat, disk-shaped structuring element. |
skimage.morphology.erosion (image[, selem]) | Return greyscale morphological erosion of an image. |
skimage.morphology.label (input[, neighbors, ...]) | Label connected regions of an integer array. |
skimage.morphology.medial_axis (image[, ...]) | Compute the medial axis transform of a binary image |
skimage.morphology.octagon (m, n[, dtype]) | Generates an octagon shaped structuring element. |
skimage.morphology.octahedron (radius[, dtype]) | Generates a octahedron-shaped structuring element. |
skimage.morphology.opening (image[, selem]) | Return greyscale morphological opening of an image. |
skimage.morphology.reconstruction (seed, mask) | Perform a morphological reconstruction of an image. |
skimage.morphology.rectangle (width, height) | Generates a flat, rectangular-shaped structuring element. |
skimage.morphology.remove_small_holes (ar[, ...]) | Remove continguous holes smaller than the specified size. |
skimage.morphology.remove_small_objects (ar) | Remove connected components smaller than the specified size. |
skimage.morphology.skeletonize (image) | Return the skeleton of a binary image. |
skimage.morphology.skeletonize_3d (img) | Compute the skeleton of a binary image. |
skimage.morphology.square (width[, dtype]) | Generates a flat, square-shaped structuring element. |
skimage.morphology.star (a[, dtype]) | Generates a star shaped structuring element. |
skimage.morphology.watershed (image, markers) | Return a matrix labeled using the watershed segmentation algorithm |
skimage.morphology.white_tophat (image[, selem]) | Return white top hat of an image. |
Please login to continue.