cbc3f5c83f0a2289eaca6bef62120617d2dbdb94,workflows/pixelClassification/pixelClassificationWorkflowMainGui.py,,,#,66

Before Change


    shell.onSaveProjectActionTriggered()


if __name__ == "__main__":
    // Start the GUI
    startShellGui( PixelClassificationWorkflow )

    // Start the GUI with a debug project    
    //startShellGui( PixelClassificationWorkflow, debug_with_existing )    
    //startShellGui( PixelClassificationWorkflow, debug_with_new )

After Change


    shell.onSaveProjectActionTriggered()


if __name__ == "__main__":
    from optparse import OptionParser
    usage = "%prog [options] filename"
    parser = OptionParser(usage)

    (options, args) = parser.parse_args()

    // Start the GUI
    if len(args) == 1:
        def loadProject(shell, workflow):
            shell.openProjectFile(args[0])
        startShellGui( PixelClassificationWorkflow, loadProject )
    elif len(args) == 0:
        startShellGui( PixelClassificationWorkflow )
    else:
        parser.error("incorrect number of arguments")

    // Start the GUI with a debug project    
    //startShellGui( PixelClassificationWorkflow, debug_with_existing )    
    //startShellGui( PixelClassificationWorkflow, debug_with_new )
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 31

Instances


Project Name: ilastik/ilastik
Commit Name: cbc3f5c83f0a2289eaca6bef62120617d2dbdb94
Time: 2012-09-11
Author: thorben.kroeger@iwr.uni-heidelberg.de
File Name: workflows/pixelClassification/pixelClassificationWorkflowMainGui.py
Class Name:
Method Name:


Project Name: ilastik/ilastik
Commit Name: 78913803e5c44c9d7b5c3fd8546bba3caf9a949c
Time: 2013-01-27
Author: thorben.kroeger@iwr.uni-heidelberg.de
File Name: workflows/vigraWatershed/vigraWatershedWorkflowMain.py
Class Name:
Method Name:


Project Name: ilastik/ilastik
Commit Name: f97816bd8f44fa1c8864a2e6944d62ef2028e4cc
Time: 2013-01-28
Author: thorben.kroeger@iwr.uni-heidelberg.de
File Name: workflows/vigraWatershed/pixelClassificationWithWatershedMain.py
Class Name:
Method Name:


Project Name: ilastik/ilastik
Commit Name: cbc3f5c83f0a2289eaca6bef62120617d2dbdb94
Time: 2012-09-11
Author: thorben.kroeger@iwr.uni-heidelberg.de
File Name: workflows/pixelClassification/pixelClassificationWorkflowMainGui.py
Class Name:
Method Name: