c65430b778f645fb8bc5ff81f08d8cf8c547a52d,pyCellProfiler/cellprofiler/modules/measureimagequality.py,MeasureImageQuality,visible_settings,#MeasureImageQuality#,250
Before Change
"""The settings as displayed to the user"""
result = []
for image_group in self.image_groups:
result += image_group.visible_settings()
result.append(self.add_button)
return result
def test_valid(self, pipeline):
After Change
"""The settings as displayed to the user"""
result = []
for image_group in self.image_groups:
result += [image_group.image_name, image_group.check_blur]
if image_group.check_blur.value:
result += [image_group.window_size]
result += [image_group.check_saturation, image_group.calculate_threshold ]
if image_group.calculate_threshold.value:
result += [image_group.threshold_method]
if image_group.threshold_method == cpthresh.TM_MOG_GLOBAL:
result += [image_group.object_fraction]
result += [image_group.remove_button, image_group.divider]
// remove the last divider
del result[-1]
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 12
Instances Project Name: CellProfiler/CellProfiler
Commit Name: c65430b778f645fb8bc5ff81f08d8cf8c547a52d
Time: 2009-10-16
Author: thouis@1fc53939-2000-0410-845c-e8453a809027
File Name: pyCellProfiler/cellprofiler/modules/measureimagequality.py
Class Name: MeasureImageQuality
Method Name: visible_settings
Project Name: CellProfiler/CellProfiler
Commit Name: c65430b778f645fb8bc5ff81f08d8cf8c547a52d
Time: 2009-10-16
Author: thouis@1fc53939-2000-0410-845c-e8453a809027
File Name: pyCellProfiler/cellprofiler/modules/measureimagequality.py
Class Name: MeasureImageQuality
Method Name: visible_settings
Project Name: CellProfiler/CellProfiler
Commit Name: ee1221408d96933de4daf0c3e9191d2fb3027a6b
Time: 2009-12-18
Author: thouis@1fc53939-2000-0410-845c-e8453a809027
File Name: pyCellProfiler/cellprofiler/modules/morph.py
Class Name: Morph
Method Name: visible_settings
Project Name: CellProfiler/CellProfiler
Commit Name: f910ef92879ece0b5093ae7f8352713c7cd94270
Time: 2010-12-22
Author: mbray@1fc53939-2000-0410-845c-e8453a809027
File Name: cellprofiler/modules/loadsingleimage.py
Class Name: LoadSingleImage
Method Name: visible_settings