Skip to content
Snippets Groups Projects
Commit 2d83b67d authored by mhby1g21's avatar mhby1g21
Browse files

added material recog tab with split/combine

parent 648e21b7
No related branches found
No related tags found
1 merge request!4GDP 4.2.10 - Adding Debug mode to GUI.py to run individual modules
......@@ -5,13 +5,14 @@ import os
from tabs.config_tab import ConfigTab
from tabs.shifter_tab import ShifterTab
from tabs.depth_tab import DepthTab
from tabs.material_tab import MaterialTab
from utils.config_reader import ConfigReader
class ModuleDebugGUI:
def __init__(self):
self.window = tk.Tk()
self.window.title("Pipeline Debug Tool")
self.window.geometry("800x600")
self.window.geometry("1600x800")
# Initialize paths
self.DEBUG_DIR = os.path.dirname(os.path.abspath(__file__)) # debug_tool directory
......@@ -29,6 +30,7 @@ class ModuleDebugGUI:
self.config_tab = ConfigTab(self.notebook, self.config_reader)
self.shifter_tab = ShifterTab(self.notebook, self.config_reader)
self.depth_tab = DepthTab(self.notebook, self.config_reader)
self.material_tab = MaterialTab(self.notebook, self.config_reader)
def run(self):
self.window.mainloop()
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment