Enum Class MorphologyOperation
java.lang.Object
java.lang.Enum<MorphologyOperation>
net.algart.executors.modules.cv.matrices.morphology.MorphologyOperation
- All Implemented Interfaces:
Serializable,Comparable<MorphologyOperation>,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptionstatic net.algart.math.patterns.PatterncrossPattern(int numberOfDimensions) static net.algart.math.patterns.Patterncube3Pattern(int numberOfDimensions) net.algart.arrays.Matrix<? extends net.algart.arrays.UpdatablePArray>perform(net.algart.matrices.morphology.Morphology morphology, net.algart.arrays.Matrix<? extends net.algart.arrays.PArray> matrix, net.algart.math.patterns.Pattern pattern) static MorphologyOperationReturns the enum constant of this class with the specified name.static MorphologyOperation[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DILATION
-
EROSION
-
CLOSING
-
OPENING
-
WEAK_DILATION
-
WEAK_EROSION
-
WEAK_CLOSING
-
WEAK_OPENING
-
EXTERNAL_GRADIENT
-
INTERNAL_GRADIENT
-
BLACK_HAT
-
TOP_HAT
-
CRATERS
-
PEAKS
-
BEUCHER_GRADIENT
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
perform
public net.algart.arrays.Matrix<? extends net.algart.arrays.UpdatablePArray> perform(net.algart.matrices.morphology.Morphology morphology, net.algart.arrays.Matrix<? extends net.algart.arrays.PArray> matrix, net.algart.math.patterns.Pattern pattern) -
crossPattern
public static net.algart.math.patterns.Pattern crossPattern(int numberOfDimensions) -
cube3Pattern
public static net.algart.math.patterns.Pattern cube3Pattern(int numberOfDimensions)
-