Package sc.fiji.snt.analysis.curation
Class PlausibilityCheck.InvalidRadius
java.lang.Object
sc.fiji.snt.analysis.curation.PlausibilityCheck.DeepCheck
sc.fiji.snt.analysis.curation.PlausibilityCheck.InvalidRadius
- Enclosing class:
PlausibilityCheck
Flags nodes whose radius is zero, negative, or
NaN. These usually
indicate radii that were never fitted (e.g., path edited after fitting)
or that the fitter could not assess. Previously surfaced as a manual
"Bookmark QC Locations" command in the Path Manager toolbar.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetName()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.Methods inherited from class sc.fiji.snt.analysis.curation.PlausibilityCheck.DeepCheck
impactKind, isEnabled, setEnabled
-
Constructor Details
-
InvalidRadius
public InvalidRadius()
-
-
Method Details
-
getName
- Specified by:
getNamein classPlausibilityCheck.DeepCheck- Returns:
- a short human-readable name for this check
-
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.
-