167418e33dce7110afa3d9c7245265ec79f7acb3,ilastik/applets/pixelClassification/pixelClassificationBatchResultsGui.py,PixelClassificationResultsViewer,setupLayers,#PixelClassificationResultsViewer#,12
Before Change
// Show the (live-updated) data we"re exporting
previewSlot = opLane.ImageToExport
if previewSlot.ready():
previewLayer = self.createStandardLayerFromSlot( previewSlot )
previewLayer.name = "Probabilities - Live Preview"
previewLayer.visible = False // off by default
previewLayer.opacity = 1.0
layers.append(previewLayer)
return layers
After Change
opLane = self.topLevelOperatorView
exportedLayers = self._initPredictionLayers(opLane.ExportedImage)
for layer in exportedLayers:
layer.visible = True
layer.name = layer.name + "- Exported"
layers += exportedLayers
previewLayers = self._initPredictionLayers(opLane.ImageToExport)
for layer in previewLayers:
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 4
Instances
Project Name: ilastik/ilastik
Commit Name: 167418e33dce7110afa3d9c7245265ec79f7acb3
Time: 2013-01-29
Author: bergs@janelia.hhmi.org
File Name: ilastik/applets/pixelClassification/pixelClassificationBatchResultsGui.py
Class Name: PixelClassificationResultsViewer
Method Name: setupLayers
Project Name: ilastik/ilastik
Commit Name: 9a3277aa76f7b8374de002e6c72bff142b594cf7
Time: 2012-08-21
Author: bergs@janelia.hhmi.org
File Name: ilastik/applets/featureSelection/featureSelectionGui.py
Class Name: FeatureSelectionGui
Method Name: setupLayers
Project Name: ilastik/ilastik
Commit Name: e8767fed61e6180b9ea3a1849c59533cd4ae0417
Time: 2014-05-08
Author: webmaster@burgerdev.de
File Name: ilastik/applets/thresholdTwoLevels/thresholdTwoLevelsGui.py
Class Name: ThresholdTwoLevelsGui
Method Name: setupLayers