public class TrackerKeys extends Object
Modifier and Type | Field and Description |
---|---|
static boolean |
DEFAULT_ALLOW_GAP_CLOSING
A default value for the "ALLOW_GAP_CLOSING" parameter.
|
static boolean |
DEFAULT_ALLOW_TRACK_MERGING
A default value for the "ALLOW_TRACK_MERGING" parameter.
|
static boolean |
DEFAULT_ALLOW_TRACK_SPLITTING
A default value for the "ALLOW_TRACK_SPLITTING" parameter.
|
static double |
DEFAULT_ALTERNATIVE_LINKING_COST_FACTOR
A default value for the "ALTERNATIVE_LINKING_COST_FACTOR"
parameter.
|
static double |
DEFAULT_BLOCKING_VALUE
A default value for the "BLOCKING_VALUE" parameter.
|
static double |
DEFAULT_CUTOFF_PERCENTILE
A default value for the "CUTOFF_PERCENTILE" parameter.
|
static Map<String,Double> |
DEFAULT_GAP_CLOSING_FEATURE_PENALTIES
A default value for the "GAP_CLOSING_FEATURE_PENALTIES"
parameter.
|
static double |
DEFAULT_GAP_CLOSING_MAX_DISTANCE
A default value for the "GAP_CLOSING_MAX_DISTANCE" parameter.
|
static int |
DEFAULT_GAP_CLOSING_MAX_FRAME_GAP
A default value for the "MAX_FRAME_GAP"
parameter.
|
static Map<String,Double> |
DEFAULT_LINKING_FEATURE_PENALTIES
A default value for the "LINKING_FEATURE_PENALTIES"
parameter.
|
static double |
DEFAULT_LINKING_MAX_DISTANCE
A default value for the "LINKING_MAX_DISTANCE" parameter.
|
static Map<String,Double> |
DEFAULT_MERGING_FEATURE_PENALTIES
A default value for the "MERGING_FEATURE_PENALTIES"
parameter.
|
static double |
DEFAULT_MERGING_MAX_DISTANCE
A default value for the "MERGING_MAX_DISTANCE" parameter.
|
static Map<String,Double> |
DEFAULT_SPLITTING_FEATURE_PENALTIES
A default value for the "SPLITTING_FEATURE_PENALTIES"
parameter.
|
static double |
DEFAULT_SPLITTING_MAX_DISTANCE
A default value for the
KEY_SPLITTING_MAX_DISTANCE parameter. |
static String |
KEY_ALLOW_GAP_CLOSING
Key for the parameter specifying whether we allow the detection of
gap-closing events.
|
static String |
KEY_ALLOW_TRACK_MERGING
Key for the parameter specifying whether we allow the detection of
merging events.
|
static String |
KEY_ALLOW_TRACK_SPLITTING
Key for the parameter specifying whether we allow the detection of
splitting events.
|
static String |
KEY_ALTERNATIVE_LINKING_COST_FACTOR
Key for the parameter specifying the factor used to compute alternative
linking costs.
|
static String |
KEY_BLOCKING_VALUE
Key for the parameter that stores the blocking value: cost for
non-physical, forbidden links.
|
static String |
KEY_CUTOFF_PERCENTILE
Key for the cutoff percentile parameter.
|
static String |
KEY_GAP_CLOSING_FEATURE_PENALTIES
Key for the parameter specifying the feature penalties when detecting
gap-closing events.
|
static String |
KEY_GAP_CLOSING_MAX_DISTANCE
Key for the parameter specifying the max gap-closing distance.
|
static String |
KEY_GAP_CLOSING_MAX_FRAME_GAP
Key for the parameter that specify the maximal number of frames to bridge
when detecting gap closing.
|
static String |
KEY_LINKING_FEATURE_PENALTIES
Key for the parameter specifying the feature penalties when linking
particles.
|
static String |
KEY_LINKING_MAX_DISTANCE
Key for the parameter specifying the maximal linking distance.
|
static String |
KEY_MERGING_FEATURE_PENALTIES
Key for the parameter specifying the feature penalties when dealing with
merging events.
|
static String |
KEY_MERGING_MAX_DISTANCE
Key for the parameter specifying the max merging distance.
|
static String |
KEY_SPLITTING_FEATURE_PENALTIES
Key for the parameter specifying the feature penalties when dealing with
splitting events.
|
static String |
KEY_SPLITTING_MAX_DISTANCE
Key for the parameter specifying the max splitting distance.
|
static String |
TRACKER_SETTINGS_ALLOW_EVENT_ATTNAME |
static String |
TRACKER_SETTINGS_ALTERNATE_COST_FACTOR_ATTNAME |
static String |
TRACKER_SETTINGS_BLOCKING_VALUE_ATTNAME |
static String |
TRACKER_SETTINGS_CUTOFF_PERCENTILE_ATTNAME |
static String |
TRACKER_SETTINGS_DISTANCE_CUTOFF_ATTNAME |
static String |
TRACKER_SETTINGS_DISTANCE_CUTOFF_ELEMENT |
static String |
TRACKER_SETTINGS_FEATURE_ELEMENT |
static String |
TRACKER_SETTINGS_GAP_CLOSING_ELEMENT |
static String |
TRACKER_SETTINGS_LINKING_ELEMENT |
static String |
TRACKER_SETTINGS_MERGING_ELEMENT |
static String |
TRACKER_SETTINGS_SPLITTING_ELEMENT |
static String |
TRACKER_SETTINGS_TIME_CUTOFF_ATTNAME |
static String |
TRACKER_SETTINGS_TIME_CUTOFF_ELEMENT |
static String |
XML_ATTRIBUTE_TRACKER_NAME
The attribute name for the
SpotTracker key when marshalling to or
unmarhsalling from XML. |
Constructor and Description |
---|
TrackerKeys() |
public static final String TRACKER_SETTINGS_ALLOW_EVENT_ATTNAME
public static final String TRACKER_SETTINGS_ALTERNATE_COST_FACTOR_ATTNAME
public static final String TRACKER_SETTINGS_CUTOFF_PERCENTILE_ATTNAME
public static final String TRACKER_SETTINGS_BLOCKING_VALUE_ATTNAME
public static final String TRACKER_SETTINGS_TIME_CUTOFF_ELEMENT
public static final String TRACKER_SETTINGS_TIME_CUTOFF_ATTNAME
public static final String TRACKER_SETTINGS_DISTANCE_CUTOFF_ELEMENT
public static final String TRACKER_SETTINGS_DISTANCE_CUTOFF_ATTNAME
public static final String TRACKER_SETTINGS_FEATURE_ELEMENT
public static final String TRACKER_SETTINGS_LINKING_ELEMENT
public static final String TRACKER_SETTINGS_GAP_CLOSING_ELEMENT
public static final String TRACKER_SETTINGS_MERGING_ELEMENT
public static final String TRACKER_SETTINGS_SPLITTING_ELEMENT
public static final String XML_ATTRIBUTE_TRACKER_NAME
SpotTracker
key when marshalling to or
unmarhsalling from XML.public static final String KEY_LINKING_MAX_DISTANCE
public static final double DEFAULT_LINKING_MAX_DISTANCE
public static final String KEY_LINKING_FEATURE_PENALTIES
Map<String, Double>
where the map keys are spot
feature names.Spot.getFeature(String)
,
Constant Field Valuespublic static final Map<String,Double> DEFAULT_LINKING_FEATURE_PENALTIES
public static final String KEY_ALLOW_GAP_CLOSING
Boolean
s.public static final boolean DEFAULT_ALLOW_GAP_CLOSING
public static final String KEY_GAP_CLOSING_MAX_FRAME_GAP
Integer
s greater
than 0. A value of 1 means that a detection might be missed in 1 frame,
and the track will not be broken. And so on.public static final int DEFAULT_GAP_CLOSING_MAX_FRAME_GAP
public static final String KEY_GAP_CLOSING_MAX_DISTANCE
Double
s and should be expressed in physical units. If
two spots, candidate for a gap-closing event, are found separated by a
distance larger than this parameter value, gap-closing will not occur.public static final double DEFAULT_GAP_CLOSING_MAX_DISTANCE
public static final String KEY_GAP_CLOSING_FEATURE_PENALTIES
Map<String, Double>
where the map keys are spot
feature names.Spot.getFeature(String)
,
Constant Field Valuespublic static final Map<String,Double> DEFAULT_GAP_CLOSING_FEATURE_PENALTIES
public static final String KEY_ALLOW_TRACK_MERGING
Boolean
s.public static final boolean DEFAULT_ALLOW_TRACK_MERGING
public static final String KEY_MERGING_MAX_DISTANCE
Double
s and should be expressed in physical units. If
two spots, candidate for a merging event, are found separated by a
distance larger than this parameter value, track merging will not occur.public static final double DEFAULT_MERGING_MAX_DISTANCE
public static final String KEY_MERGING_FEATURE_PENALTIES
Map<String, Double>
where the map keys are spot
feature names.Spot.getFeature(String)
,
Constant Field Valuespublic static final Map<String,Double> DEFAULT_MERGING_FEATURE_PENALTIES
public static final String KEY_ALLOW_TRACK_SPLITTING
Boolean
s.public static final boolean DEFAULT_ALLOW_TRACK_SPLITTING
public static final String KEY_SPLITTING_MAX_DISTANCE
Double
s and should be expressed in physical units. If
two spots, candidate for a merging event, are found separated by a
distance larger than this parameter value, track splitting will not
occur.public static final double DEFAULT_SPLITTING_MAX_DISTANCE
KEY_SPLITTING_MAX_DISTANCE
parameter.public static final String KEY_SPLITTING_FEATURE_PENALTIES
Map<String, Double>
where the map keys are spot
feature names.Spot.getFeature(String)
,
Constant Field Valuespublic static final Map<String,Double> DEFAULT_SPLITTING_FEATURE_PENALTIES
public static final String KEY_ALTERNATIVE_LINKING_COST_FACTOR
Double
s.public static final double DEFAULT_ALTERNATIVE_LINKING_COST_FACTOR
public static final String KEY_CUTOFF_PERCENTILE
Double
s.public static final double DEFAULT_CUTOFF_PERCENTILE
public static final String KEY_BLOCKING_VALUE
Double
s, and
are typically very large.public static final double DEFAULT_BLOCKING_VALUE
Copyright © 2015–2021 Fiji. All rights reserved.