Package sc.fiji.snt.analysis.curation
Class PlausibilityCheck.RadiusJumps
java.lang.Object
sc.fiji.snt.analysis.curation.PlausibilityCheck.DeepCheck
sc.fiji.snt.analysis.curation.PlausibilityCheck.RadiusJumps
- Enclosing class:
PlausibilityCheck
Detects abrupt radius jumps between adjacent nodes within a path.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiondoublegetName()measure(Collection<Path> paths) Computes the full distribution of this check's metric acrosspaths, without applying the warning threshold.scan(Collection<Path> paths) Scans a collection of paths for plausibility issues.voidsetMaxJumpRatio(double ratio) Methods inherited from class sc.fiji.snt.analysis.curation.PlausibilityCheck.DeepCheck
impactKind, isEnabled, setEnabled
-
Constructor Details
-
RadiusJumps
public RadiusJumps()
-
-
Method Details
-
getName
- Specified by:
getNamein classPlausibilityCheck.DeepCheck- Returns:
- a short human-readable name for this check
-
setMaxJumpRatio
public void setMaxJumpRatio(double ratio) -
getMaxJumpRatio
public double getMaxJumpRatio() -
scan
Description copied from class:PlausibilityCheck.DeepCheckScans a collection of paths for plausibility issues.- Specified by:
scanin classPlausibilityCheck.DeepCheck- Parameters:
paths- the paths to scan- Returns:
- list of warnings (empty if no issues found)
-
measure
Description copied from class:PlausibilityCheck.DeepCheckComputes the full distribution of this check's metric acrosspaths, without applying the warning threshold. Default implementation returnsPlausibilityCheck.Measurements.EMPTY; subclasses override to enable per-check histogram popups in the Curation Assistant.- Overrides:
measurein classPlausibilityCheck.DeepCheck- Parameters:
paths- the paths to evaluate;nullor empty yieldsPlausibilityCheck.Measurements.EMPTY.- Returns:
- a
PlausibilityCheck.Measurementsrecord; nevernull.
-