def main(): # Create the Qt Application app = makeApplication("Capture") Parameter.usePyQtGraph = True # Create and show the GUI window = CWCaptureGUI(CWCoreAPI()) window.show() # Run the main Qt loop app.exec_()
def main(): # Create the Qt Application app = makeApplication("Analyzer") # Create and show the GUI Parameter.usePyQtGraph = True window = CWAnalyzerGUI(CWCoreAPI()) window.show() # Run the main Qt loop app.exec_()