Uses of Record Class
cloud.opencode.base.image.morphology.StructuringElement
Packages that use StructuringElement
-
Uses of StructuringElement in cloud.opencode.base.image.morphology
Methods in cloud.opencode.base.image.morphology that return StructuringElementModifier and TypeMethodDescriptionstatic StructuringElementStructuringElement.cross(int size) Create a cross (plus) shaped structuring element.static StructuringElementStructuringElement.ellipse(int width, int height) Create an elliptical structuring element.static StructuringElementStructuringElement.rect(int width, int height) Create a rectangular structuring element with all mask values set to true.Methods in cloud.opencode.base.image.morphology with parameters of type StructuringElementModifier and TypeMethodDescriptionstatic BufferedImageMorphologyOp.blackHat(BufferedImage image, StructuringElement element) Compute the black-hat transform (closing minus original).static BufferedImageMorphologyOp.close(BufferedImage image, StructuringElement element) Close an image (dilate then erode).static BufferedImageMorphologyOp.dilate(BufferedImage image, StructuringElement element) Dilate an image using the given structuring element.static BufferedImageMorphologyOp.erode(BufferedImage image, StructuringElement element) Erode an image using the given structuring element.static BufferedImageMorphologyOp.gradient(BufferedImage image, StructuringElement element) Compute the morphological gradient (dilate minus erode).static BufferedImageMorphologyOp.open(BufferedImage image, StructuringElement element) Open an image (erode then dilate).static BufferedImageMorphologyOp.topHat(BufferedImage image, StructuringElement element) Compute the top-hat transform (original minus opening).