Enum SoSupervisedTextureClassificationProcessing3d.FeatureGroups
- java.lang.Object
-
- java.lang.Enum<SoSupervisedTextureClassificationProcessing3d.FeatureGroups>
-
- com.openinventor.imageviz.engines.imagesegmentation.classification.SoSupervisedTextureClassificationProcessing3d.FeatureGroups
-
- All Implemented Interfaces:
IntegerValuedEnum
,java.io.Serializable
,java.lang.Comparable<SoSupervisedTextureClassificationProcessing3d.FeatureGroups>
- Enclosing class:
- SoSupervisedTextureClassificationProcessing3d
public static enum SoSupervisedTextureClassificationProcessing3d.FeatureGroups extends java.lang.Enum<SoSupervisedTextureClassificationProcessing3d.FeatureGroups> implements IntegerValuedEnum
This enum defines all type of measures used for texture classification.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DIRECTIONAL_COOCCURRENCE
Features based on co-occurrence's matrix.FIRST_ORDER_STATISTICS
Features based on first order statistics which are not computed using an histogram.HISTOGRAM_STATISTICS
Features based on histogram statistics.INTENSITY
Feature based on the intensity value of the input image.ROTATION_INVARIANT_COOCCURRENCE
Features based on co-occurrence's matrix.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getValue()
Returns the integer value of the enum constant.static SoSupervisedTextureClassificationProcessing3d.FeatureGroups
valueOf(int val)
Returns the enum constant of this type with the specified integer valuestatic SoSupervisedTextureClassificationProcessing3d.FeatureGroups
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SoSupervisedTextureClassificationProcessing3d.FeatureGroups[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DIRECTIONAL_COOCCURRENCE
public static final SoSupervisedTextureClassificationProcessing3d.FeatureGroups DIRECTIONAL_COOCCURRENCE
Features based on co-occurrence's matrix. One feature is extracted from each co-occurrence vector.
-
ROTATION_INVARIANT_COOCCURRENCE
public static final SoSupervisedTextureClassificationProcessing3d.FeatureGroups ROTATION_INVARIANT_COOCCURRENCE
Features based on co-occurrence's matrix. 3 statistics features are extracted from all vectors.
-
FIRST_ORDER_STATISTICS
public static final SoSupervisedTextureClassificationProcessing3d.FeatureGroups FIRST_ORDER_STATISTICS
Features based on first order statistics which are not computed using an histogram.
-
HISTOGRAM_STATISTICS
public static final SoSupervisedTextureClassificationProcessing3d.FeatureGroups HISTOGRAM_STATISTICS
Features based on histogram statistics.
-
INTENSITY
public static final SoSupervisedTextureClassificationProcessing3d.FeatureGroups INTENSITY
Feature based on the intensity value of the input image.
-
-
Method Detail
-
values
public static SoSupervisedTextureClassificationProcessing3d.FeatureGroups[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SoSupervisedTextureClassificationProcessing3d.FeatureGroups c : SoSupervisedTextureClassificationProcessing3d.FeatureGroups.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SoSupervisedTextureClassificationProcessing3d.FeatureGroups valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
valueOf
public static SoSupervisedTextureClassificationProcessing3d.FeatureGroups valueOf(int val)
Returns the enum constant of this type with the specified integer value- Returns:
- the enum constant of this type with the specified integer value.
-
getValue
public int getValue()
Description copied from interface:IntegerValuedEnum
Returns the integer value of the enum constant.- Specified by:
getValue
in interfaceIntegerValuedEnum
- Returns:
- the integer value of the enum constant.
-
-