Uses of Enum Class
org.episteme.core.media.pictures.ImageMorphology.Shape
Packages that use ImageMorphology.Shape
Package
Description
Core functionality for the org.episteme.core.media.pictures package in the Episteme library.
-
Uses of ImageMorphology.Shape in org.episteme.core.media.pictures
Subclasses with type arguments of type ImageMorphology.Shape in org.episteme.core.media.picturesMethods in org.episteme.core.media.pictures that return ImageMorphology.ShapeModifier and TypeMethodDescriptionstatic ImageMorphology.ShapeReturns the enum constant of this class with the specified name.static ImageMorphology.Shape[]ImageMorphology.Shape.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.episteme.core.media.pictures with parameters of type ImageMorphology.ShapeModifier and TypeMethodDescriptionstatic float[][]ImageMorphology.close(float[][] input, int radius, ImageMorphology.Shape shape) Closing operation (Dilation then Erosion).static float[][]ImageMorphology.dilate(float[][] input, int radius, ImageMorphology.Shape shape) Dilation operation (Max filter).static float[][]ImageMorphology.erode(float[][] input, int radius, ImageMorphology.Shape shape) Erosion operation (Min filter).static float[][]ImageMorphology.open(float[][] input, int radius, ImageMorphology.Shape shape) Opening operation (Erosion then Dilation).