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 RasterMorphologyOp.blackHat(Raster raster, StructuringElement element) Compute the black-hat transform (closing - original) on aRaster.static RasterMorphologyOp.close(Raster raster, StructuringElement element) Close aRaster(dilate then erode).static RasterMorphologyOp.dilate(Raster raster, StructuringElement element) Dilate aRasterusing the given structuring element.static RasterMorphologyOp.erode(Raster raster, StructuringElement element) Erode aRasterusing the given structuring element.static RasterMorphologyOp.gradient(Raster raster, StructuringElement element) Compute the morphological gradient (dilate - erode) on aRaster.static RasterMorphologyOp.open(Raster raster, StructuringElement element) Open aRaster(erode then dilate).static RasterMorphologyOp.topHat(Raster raster, StructuringElement element) Compute the top-hat transform (original - opening) on aRaster. -
Uses of StructuringElement in cloud.opencode.base.image.raster
Methods in cloud.opencode.base.image.raster with parameters of type StructuringElementModifier and TypeMethodDescriptionRasterPipeline.close(StructuringElement element) Apply morphological closing (dilation followed by erosion).RasterPipeline.dilate(StructuringElement element) Apply morphological dilation.RasterPipeline.erode(StructuringElement element) Apply morphological erosion.RasterPipeline.open(StructuringElement element) Apply morphological opening (erosion followed by dilation).