Package sc.fiji.snt.tracing.auto
Enum Class AbstractGWDTTracer.WaypointBiasSource
java.lang.Object
java.lang.Enum<AbstractGWDTTracer.WaypointBiasSource>
sc.fiji.snt.tracing.auto.AbstractGWDTTracer.WaypointBiasSource
- All Implemented Interfaces:
Serializable,Comparable<AbstractGWDTTracer.WaypointBiasSource>,java.lang.constant.Constable
- Enclosing class:
AbstractGWDTTracer<T extends net.imglib2.type.numeric.RealType<T>>
public static enum AbstractGWDTTracer.WaypointBiasSource
extends Enum<AbstractGWDTTracer.WaypointBiasSource>
How the per-waypoint bias amount is derived. See
AbstractGWDTTracer.setWaypointBiasSource(WaypointBiasSource).-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionBias proportional to each seed'sconfidence(default).Uniform bias for every waypoint, controlled byAbstractGWDTTracer.setWaypointBiasFixedFactor(double).Bias proportional to each seed'sradius(normalised over the waypoint set). -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CONFIDENCE
Bias proportional to each seed'sconfidence(default). -
RADIUS
Bias proportional to each seed'sradius(normalised over the waypoint set). -
FIXED
Uniform bias for every waypoint, controlled byAbstractGWDTTracer.setWaypointBiasFixedFactor(double).
-
-
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
-