fbfa34278159ca7cf76e251617fac6a7bcdacd89,cellprofiler/modules/colortogray.py,ColorToGray,display_split,#ColorToGray#Any#,203
Before Change
for xy, disp in zip(layout,disp_collection):
output_axes = figure.subplot(xy[0],xy[1])
output_axes.clear()
output_axes.imshow(disp[0],matplotlib.cm.Greys_r)
output_axes.set_title("%s image"%(disp[1]))
def is_interactive(self):
return False
After Change
subplots = (2,2)
figure=workspace.create_or_find_figure(title="Color to gray",
subplots=subplots)
figure.subplot_imshow(0, 0, input_image,
title = "Original image")
if ndisp == 1:
layout = [(0,1)]
elif ndisp == 2:
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 2
Instances
Project Name: CellProfiler/CellProfiler
Commit Name: fbfa34278159ca7cf76e251617fac6a7bcdacd89
Time: 2010-03-16
Author: afraser@1fc53939-2000-0410-845c-e8453a809027
File Name: cellprofiler/modules/colortogray.py
Class Name: ColorToGray
Method Name: display_split
Project Name: CellProfiler/CellProfiler
Commit Name: fbfa34278159ca7cf76e251617fac6a7bcdacd89
Time: 2010-03-16
Author: afraser@1fc53939-2000-0410-845c-e8453a809027
File Name: cellprofiler/modules/colortogray.py
Class Name: ColorToGray
Method Name: display_combine
Project Name: CellProfiler/CellProfiler
Commit Name: 37d789716a56747b3c6b603a900403c7ca1c3368
Time: 2010-03-24
Author: leek@1fc53939-2000-0410-845c-e8453a809027
File Name: cellprofiler/modules/definegrid.py
Class Name: DefineGrid
Method Name: display_grid