ceb5457679e3bfa0bc62bab4716bc6b2a7b9db89,ilastik/applets/thresholdTwoLevels/opThresholdTwoLevels.py,OpAnisotropicGaussianSmoothing,propagateDirty,#OpAnisotropicGaussianSmoothing#Any#Any#Any#,91
Before Change
def propagateDirty(self, slot, subindex, roi):
// Halo calculation is bidirectional, so we can re-use the function that computes the halo during execute()
inputRoi, _ = self._getInputComputeRois(roi)
self.Output.setDirty( inputRoi[0], inputRoi[1] )
class OpSelectLabels(Operator):
Given two label images, produce a copy of BigLabels, EXCEPT first remove all labels
After Change
return inputRoi, computeRoi
def propagateDirty(self, slot, subindex, roi):
if slot == self.Input:
// Halo calculation is bidirectional, so we can re-use the function that computes the halo during execute()
inputRoi, _ = self._getInputComputeRois(roi)
self.Output.setDirty( inputRoi[0], inputRoi[1] )
elif slot == self.Sigmas:
self.Output.setDirty( slice(None) )
else:
assert False, "Unknown input slot: {}".format( slot.name )
class OpSelectLabels(Operator):
Given two label images, produce a copy of BigLabels, EXCEPT first remove all labels
from BigLabels that do not overlap with any labels in SmallLabels.
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 10
Instances Project Name: ilastik/ilastik
Commit Name: ceb5457679e3bfa0bc62bab4716bc6b2a7b9db89
Time: 2013-03-19
Author: bergs@janelia.hhmi.org
File Name: ilastik/applets/thresholdTwoLevels/opThresholdTwoLevels.py
Class Name: OpAnisotropicGaussianSmoothing
Method Name: propagateDirty
Project Name: ilastik/ilastik
Commit Name: 635fa35e132842c678c05b95cfbb10bc4a1f64c2
Time: 2015-03-12
Author: bergs@janelia.hhmi.org
File Name: ilastik/applets/iiboostFeatureSelection/opIIBoostFeatureSelection.py
Class Name: OpHessianEigenvectors
Method Name: propagateDirty
Project Name: ilastik/ilastik
Commit Name: f60e55e0db17de6650e51fd4f009c18043a956af
Time: 2013-09-18
Author: bergs@janelia.hhmi.org
File Name: lazyflow/operators/valueProviders.py
Class Name: OpValueCache
Method Name: propagateDirty