de.unihalle.informatik.MiToBo.filters.linear.anisotropic
Enum OrientedFilter2DBatchAnalyzer.JoinMode

java.lang.Object
  extended by java.lang.Enum<OrientedFilter2DBatchAnalyzer.JoinMode>
      extended by de.unihalle.informatik.MiToBo.filters.linear.anisotropic.OrientedFilter2DBatchAnalyzer.JoinMode
All Implemented Interfaces:
Serializable, Comparable<OrientedFilter2DBatchAnalyzer.JoinMode>
Enclosing class:
OrientedFilter2DBatchAnalyzer

public static enum OrientedFilter2DBatchAnalyzer.JoinMode
extends Enum<OrientedFilter2DBatchAnalyzer.JoinMode>

Method for joining the results from the various orientations.


Enum Constant Summary
JOIN_MAXIMUM
          Result is the pixel-wise maximum over all orientations.
JOIN_PRODUCT
          Result is the pixel-wise product over all orientations.
 
Method Summary
static OrientedFilter2DBatchAnalyzer.JoinMode valueOf(String name)
          Returns the enum constant of this type with the specified name.
static OrientedFilter2DBatchAnalyzer.JoinMode[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

JOIN_MAXIMUM

public static final OrientedFilter2DBatchAnalyzer.JoinMode JOIN_MAXIMUM
Result is the pixel-wise maximum over all orientations.


JOIN_PRODUCT

public static final OrientedFilter2DBatchAnalyzer.JoinMode JOIN_PRODUCT
Result is the pixel-wise product over all orientations.

Prior to joining the responses they are all normalized to a common interval of [0,1]. Note that this might cause problems if the filter responses also include negative values.

Method Detail

values

public static OrientedFilter2DBatchAnalyzer.JoinMode[] 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 (OrientedFilter2DBatchAnalyzer.JoinMode c : OrientedFilter2DBatchAnalyzer.JoinMode.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static OrientedFilter2DBatchAnalyzer.JoinMode valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2010–2015 Martin Luther University Halle-Wittenberg. All rights reserved.