Enum SoTensorVotingProcessing2d.OutputSelections
- java.lang.Object
-
- java.lang.Enum<SoTensorVotingProcessing2d.OutputSelections>
-
- com.openinventor.imageviz.engines.edgedetection.edgemarking.SoTensorVotingProcessing2d.OutputSelections
-
- All Implemented Interfaces:
IntegerValuedEnum
,java.io.Serializable
,java.lang.Comparable<SoTensorVotingProcessing2d.OutputSelections>
- Enclosing class:
- SoTensorVotingProcessing2d
public static enum SoTensorVotingProcessing2d.OutputSelections extends java.lang.Enum<SoTensorVotingProcessing2d.OutputSelections> implements IntegerValuedEnum
This enum defines each computable outputs.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BALLNESS
Enable the computation of the output ballness image.ORIENTATION_VECTOR
Enable the computation of the output orientation vector image.SALIENCY
Enable the computation of the output saliency image.TENSOR
Enable the computation of the output tensor image.
-
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 SoTensorVotingProcessing2d.OutputSelections
valueOf(int val)
Returns the enum constant of this type with the specified integer valuestatic SoTensorVotingProcessing2d.OutputSelections
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SoTensorVotingProcessing2d.OutputSelections[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TENSOR
public static final SoTensorVotingProcessing2d.OutputSelections TENSOR
Enable the computation of the output tensor image.
-
ORIENTATION_VECTOR
public static final SoTensorVotingProcessing2d.OutputSelections ORIENTATION_VECTOR
Enable the computation of the output orientation vector image.
-
SALIENCY
public static final SoTensorVotingProcessing2d.OutputSelections SALIENCY
Enable the computation of the output saliency image.
-
BALLNESS
public static final SoTensorVotingProcessing2d.OutputSelections BALLNESS
Enable the computation of the output ballness image.
-
-
Method Detail
-
values
public static SoTensorVotingProcessing2d.OutputSelections[] 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 (SoTensorVotingProcessing2d.OutputSelections c : SoTensorVotingProcessing2d.OutputSelections.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SoTensorVotingProcessing2d.OutputSelections 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 SoTensorVotingProcessing2d.OutputSelections 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.
-
-