MaxLabelValue = OutputSlot()
LabelImages = MultiOutputSlot() // Labels from the user
NonzeroLabelBlocks = MultiOutputSlot() // A list if slices that contain non-zero label values
Classifier = OutputSlot() // We provide the classifier as an external output for other applets to use
CachedPredictionProbabilities = MultiOutputSlot() // Classification predictions (via a cache)
After Change
PredictionsFromDisk = InputSlot(optional=True, level=1)
PredictionProbabilities = OutputSlot(level=1) // Classification predictions
PredictionProbabilityChannels = OutputSlot(level=2) // Classification predictions, enumerated by channel
SegmentationChannels = OutputSlot(level=2) // Binary image of the final selections.