9253505f0bda184813736595462c5413402c6025,ilastik/applets/objectExtraction/objectExtractionGui.py,ObjectExtractionGui,_selectFeaturesButtonPressed,#ObjectExtractionGui#,240
Before Change
fakelabels = np.empty(labelshape, dtype=np.uint32)
ndim = 3
zIndex = axistags.index("z")
if len(labelshape)==2 or (zIndex<len(mainOperator.RawImage.meta.shape) and mainOperator.RawImage.meta.shape[zIndex]==1):
ndim=2
for pluginInfo in plugins:
featureDict[pluginInfo.name] = pluginInfo.plugin_object.availableFeatures(fakeimg, fakelabels)
dlg = FeatureSelectionDialog(featureDict=featureDict,
selectedFeatures=selectedFeatures, ndim=ndim)
After Change
taggedShape = mainOperator.RawImage.meta.getTaggedShape()
fakeimg = None
fakeimgshp = [taggedShape["x"], taggedShape["y"]]
fakelabelsshp = [taggedShape["x"], taggedShape["y"]]
ndim = 3
if "z" in taggedShape and taggedShape["z"]>1:
fakeimgshp.append(taggedShape["z"])
fakelabelsshp.append(taggedShape["z"])
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 6
Instances
Project Name: ilastik/ilastik
Commit Name: 9253505f0bda184813736595462c5413402c6025
Time: 2013-07-27
Author: anna.kreshuk@iwr.uni-heidelberg.de
File Name: ilastik/applets/objectExtraction/objectExtractionGui.py
Class Name: ObjectExtractionGui
Method Name: _selectFeaturesButtonPressed
Project Name: biocore/scikit-bio
Commit Name: 0ec801fd087ff1d049344af4270a8b0220571ced
Time: 2014-04-28
Author: josenavasmolina@gmail.com
File Name: skbio/maths/gradient.py
Class Name:
Method Name: make_groups
Project Name: biolab/orange3
Commit Name: 959f696b68e68ab67ea44b49dd1070c217ee62b1
Time: 2016-09-13
Author: marko.toplak@gmail.com
File Name: Orange/preprocess/transformation.py
Class Name: Transformation
Method Name: __call__