spacr 0.1.1__py3-none-any.whl → 0.1.12__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
spacr/classify_app.py ADDED
@@ -0,0 +1,201 @@
1
+ import sys, ctypes, matplotlib
2
+ import tkinter as tk
3
+ from tkinter import ttk, scrolledtext
4
+ from matplotlib.figure import Figure
5
+ from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg
6
+ from matplotlib.figure import Figure
7
+ matplotlib.use('Agg')
8
+ from tkinter import filedialog
9
+ from multiprocessing import Process, Queue, Value
10
+ import traceback
11
+
12
+ try:
13
+ ctypes.windll.shcore.SetProcessDpiAwareness(True)
14
+ except AttributeError:
15
+ pass
16
+
17
+ from .logger import log_function_call
18
+ from .gui_utils import ScrollableFrame, StdoutRedirector, CustomButton, set_dark_style, set_default_font, generate_fields, process_stdout_stderr, clear_canvas, main_thread_update_function
19
+ from .gui_utils import classify_variables, check_classify_gui_settings, train_test_model_wrapper, read_settings_from_csv, update_settings_from_csv, style_text_boxes, create_menu_bar
20
+
21
+ thread_control = {"run_thread": None, "stop_requested": False}
22
+
23
+ #@log_function_call
24
+ def initiate_abort():
25
+ global thread_control
26
+ if thread_control.get("stop_requested") is not None:
27
+ thread_control["stop_requested"].value = 1
28
+
29
+ if thread_control.get("run_thread") is not None:
30
+ thread_control["run_thread"].join(timeout=5)
31
+ if thread_control["run_thread"].is_alive():
32
+ thread_control["run_thread"].terminate()
33
+ thread_control["run_thread"] = None
34
+
35
+ #@log_function_call
36
+ def run_classify_gui(q, fig_queue, stop_requested):
37
+ global vars_dict
38
+ process_stdout_stderr(q)
39
+ try:
40
+ settings = check_classify_gui_settings(vars_dict)
41
+ for key in settings:
42
+ value = settings[key]
43
+ print(key, value, type(value))
44
+ train_test_model_wrapper(settings['src'], settings)
45
+ except Exception as e:
46
+ q.put(f"Error during processing: {e}")
47
+ traceback.print_exc()
48
+ finally:
49
+ stop_requested.value = 1
50
+
51
+ #@log_function_call
52
+ def start_process(q, fig_queue):
53
+ global thread_control
54
+ if thread_control.get("run_thread") is not None:
55
+ initiate_abort()
56
+
57
+ stop_requested = Value('i', 0) # multiprocessing shared value for inter-process communication
58
+ thread_control["stop_requested"] = stop_requested
59
+ thread_control["run_thread"] = Process(target=run_classify_gui, args=(q, fig_queue, stop_requested))
60
+ thread_control["run_thread"].start()
61
+
62
+ def import_settings(scrollable_frame):
63
+ global vars_dict
64
+
65
+ csv_file_path = filedialog.askopenfilename(filetypes=[("CSV files", "*.csv")])
66
+ csv_settings = read_settings_from_csv(csv_file_path)
67
+ variables = classify_variables()
68
+ new_settings = update_settings_from_csv(variables, csv_settings)
69
+ vars_dict = generate_fields(new_settings, scrollable_frame)
70
+
71
+ #@log_function_call
72
+ def initiate_classify_root(parent_frame):
73
+ global vars_dict, q, canvas, fig_queue, canvas_widget, thread_control
74
+
75
+ style = ttk.Style(parent_frame)
76
+ set_dark_style(style)
77
+ style_text_boxes(style)
78
+ set_default_font(parent_frame, font_name="Helvetica", size=8)
79
+
80
+ parent_frame.configure(bg='#333333')
81
+ parent_frame.grid_rowconfigure(0, weight=1)
82
+ parent_frame.grid_columnconfigure(0, weight=1)
83
+ fig_queue = Queue()
84
+
85
+ def _process_fig_queue():
86
+ global canvas
87
+ try:
88
+ while not fig_queue.empty():
89
+ clear_canvas(canvas)
90
+ fig = fig_queue.get_nowait()
91
+ for ax in fig.get_axes():
92
+ ax.set_xticks([]) # Remove x-axis ticks
93
+ ax.set_yticks([]) # Remove y-axis ticks
94
+ ax.xaxis.set_visible(False) # Hide the x-axis
95
+ ax.yaxis.set_visible(False) # Hide the y-axis
96
+ fig.tight_layout()
97
+ fig.set_facecolor('#333333')
98
+ canvas.figure = fig
99
+ fig_width, fig_height = canvas_widget.winfo_width(), canvas_widget.winfo_height()
100
+ fig.set_size_inches(fig_width / fig.dpi, fig_height / fig.dpi, forward=True)
101
+ canvas.draw_idle()
102
+ except Exception as e:
103
+ traceback.print_exc()
104
+ finally:
105
+ canvas_widget.after(100, _process_fig_queue)
106
+
107
+ def _process_console_queue():
108
+ while not q.empty():
109
+ message = q.get_nowait()
110
+ console_output.insert(tk.END, message)
111
+ console_output.see(tk.END)
112
+ console_output.after(100, _process_console_queue)
113
+
114
+ vertical_container = tk.PanedWindow(parent_frame, orient=tk.HORIZONTAL)
115
+ vertical_container.grid(row=0, column=0, sticky=tk.NSEW)
116
+ parent_frame.grid_rowconfigure(0, weight=1)
117
+ parent_frame.grid_columnconfigure(0, weight=1)
118
+
119
+ # Settings Section
120
+ settings_frame = tk.Frame(vertical_container, bg='#333333')
121
+ vertical_container.add(settings_frame, stretch="always")
122
+ settings_label = ttk.Label(settings_frame, text="Settings", background="#333333", foreground="white")
123
+ settings_label.grid(row=0, column=0, pady=10, padx=10)
124
+ scrollable_frame = ScrollableFrame(settings_frame, width=500)
125
+ scrollable_frame.grid(row=1, column=0, sticky="nsew")
126
+ settings_frame.grid_rowconfigure(1, weight=1)
127
+ settings_frame.grid_columnconfigure(0, weight=1)
128
+
129
+ # Setup for user input fields (variables)
130
+ variables = classify_variables()
131
+ vars_dict = generate_fields(variables, scrollable_frame)
132
+
133
+ # Button section
134
+ import_btn = CustomButton(scrollable_frame.scrollable_frame, text="Import", command=lambda: import_settings(scrollable_frame), font=('Helvetica', 10))
135
+ import_btn.grid(row=47, column=0, pady=20, padx=20)
136
+ run_button = CustomButton(scrollable_frame.scrollable_frame, text="Run", command=lambda: start_process(q, fig_queue), font=('Helvetica', 10))
137
+ run_button.grid(row=45, column=0, pady=20, padx=20)
138
+ abort_button = CustomButton(scrollable_frame.scrollable_frame, text="Abort", command=initiate_abort, font=('Helvetica', 10))
139
+ abort_button.grid(row=45, column=1, pady=20, padx=20)
140
+ progress_label = ttk.Label(scrollable_frame.scrollable_frame, text="Processing: 0%", background="black", foreground="white") # Create progress field
141
+ progress_label.grid(row=50, column=0, columnspan=2, sticky="ew", pady=(5, 0), padx=10)
142
+
143
+ # Plot Canvas Section
144
+ plot_frame = tk.PanedWindow(vertical_container, orient=tk.VERTICAL)
145
+ vertical_container.add(plot_frame, stretch="always")
146
+ figure = Figure(figsize=(30, 4), dpi=100, facecolor='#333333')
147
+ plot = figure.add_subplot(111)
148
+ plot.plot([], [])
149
+ plot.axis('off')
150
+ canvas = FigureCanvasTkAgg(figure, master=plot_frame)
151
+ canvas.get_tk_widget().configure(cursor='arrow', background='#333333', highlightthickness=0)
152
+ canvas_widget = canvas.get_tk_widget()
153
+ plot_frame.add(canvas_widget, stretch="always")
154
+ canvas.draw()
155
+ canvas.figure = figure
156
+
157
+ # Console Section
158
+ console_frame = tk.Frame(vertical_container, bg='#333333')
159
+ vertical_container.add(console_frame, stretch="always")
160
+ console_label = ttk.Label(console_frame, text="Console", background="#333333", foreground="white")
161
+ console_label.grid(row=0, column=0, pady=10, padx=10)
162
+ console_output = scrolledtext.ScrolledText(console_frame, height=10, bg='#333333', fg='white', insertbackground='white')
163
+ console_output.grid(row=1, column=0, sticky="nsew")
164
+ console_frame.grid_rowconfigure(1, weight=1)
165
+ console_frame.grid_columnconfigure(0, weight=1)
166
+
167
+ q = Queue()
168
+ sys.stdout = StdoutRedirector(console_output)
169
+ sys.stderr = StdoutRedirector(console_output)
170
+
171
+ _process_console_queue()
172
+ _process_fig_queue()
173
+
174
+ parent_frame.after(100, lambda: main_thread_update_function(parent_frame, q, fig_queue, canvas_widget, progress_label))
175
+
176
+ return parent_frame, vars_dict
177
+
178
+ def gui_classify():
179
+ root = tk.Tk()
180
+ width = root.winfo_screenwidth()
181
+ height = root.winfo_screenheight()
182
+ root.geometry(f"{width}x{height}")
183
+ root.title("SpaCr: classify objects")
184
+
185
+ # Clear previous content if any
186
+ if hasattr(root, 'content_frame'):
187
+ for widget in root.content_frame.winfo_children():
188
+ widget.destroy()
189
+ root.content_frame.grid_forget()
190
+ else:
191
+ root.content_frame = tk.Frame(root)
192
+ root.content_frame.grid(row=1, column=0, sticky="nsew")
193
+ root.grid_rowconfigure(1, weight=1)
194
+ root.grid_columnconfigure(0, weight=1)
195
+
196
+ initiate_classify_root(root.content_frame)
197
+ create_menu_bar(root)
198
+ root.mainloop()
199
+
200
+ if __name__ == "__main__":
201
+ gui_classify()
spacr/gui.py CHANGED
@@ -6,22 +6,21 @@ import os
6
6
  import requests
7
7
 
8
8
  # Import your GUI apps
9
- from .gui_mask_app import initiate_mask_root
10
- from .gui_measure_app import initiate_measure_root
11
- from .annotate_app import initiate_annotation_app_root
12
- from .mask_app import initiate_mask_app_root
13
- from .gui_classify_app import initiate_classify_root
14
-
15
- from .gui_utils import CustomButton, style_text_boxes
9
+ from .app_mask import initiate_mask_root
10
+ from .app_measure import initiate_measure_root
11
+ from .app_annotate import initiate_annotation_app_root
12
+ from .app_make_masks import initiate_mask_app_root
13
+ from .app_classify import initiate_classify_root
14
+ from .gui_utils import CustomButton, style_text_boxes, create_menu_bar
16
15
 
17
16
  class MainApp(tk.Tk):
18
17
  def __init__(self):
19
18
  super().__init__()
19
+ width = self.winfo_screenwidth()
20
+ height = self.winfo_screenheight()
21
+ self.geometry(f"{width}x{height}")
20
22
  self.title("SpaCr GUI Collection")
21
- self.geometry("1100x1500")
22
23
  self.configure(bg="black")
23
- #self.attributes('-fullscreen', True)
24
-
25
24
  style = ttk.Style()
26
25
  style_text_boxes(style)
27
26
 
@@ -38,15 +37,18 @@ class MainApp(tk.Tk):
38
37
 
39
38
  def create_widgets(self):
40
39
  # Create the menu bar
41
- #create_menu_bar(self)
40
+ create_menu_bar(self)
41
+
42
42
  # Create a canvas to hold the selected app and other elements
43
- self.canvas = tk.Canvas(self, bg="black", highlightthickness=0, width=4000, height=4000)
43
+ self.canvas = tk.Canvas(self, bg="black", highlightthickness=0)
44
44
  self.canvas.grid(row=0, column=0, sticky="nsew")
45
45
  self.grid_rowconfigure(0, weight=1)
46
46
  self.grid_columnconfigure(0, weight=1)
47
+
47
48
  # Create a frame inside the canvas to hold the main content
48
49
  self.content_frame = tk.Frame(self.canvas, bg="black")
49
50
  self.content_frame.pack(fill=tk.BOTH, expand=True)
51
+
50
52
  # Create startup screen with buttons for each GUI app
51
53
  self.create_startup_screen()
52
54
 
@@ -59,10 +61,10 @@ class MainApp(tk.Tk):
59
61
 
60
62
  # Load the logo image
61
63
  if not self.load_logo(logo_frame):
62
- tk.Label(logo_frame, text="Logo not found", bg="black", fg="white", font=('Helvetica', 24, tkFont.NORMAL)).pack(padx=10, pady=10)
64
+ tk.Label(logo_frame, text="Logo not found", bg="black", fg="white", font=('Helvetica', 24)).pack(padx=10, pady=10)
63
65
 
64
66
  # Add SpaCr text below the logo with padding for sharper text
65
- tk.Label(logo_frame, text="SpaCr", bg="black", fg="#008080", font=('Helvetica', 24, tkFont.NORMAL)).pack(padx=10, pady=10)
67
+ tk.Label(logo_frame, text="SpaCr", bg="black", fg="#008080", font=('Helvetica', 24)).pack(padx=10, pady=10)
66
68
 
67
69
  # Create a frame for the buttons and descriptions
68
70
  buttons_frame = tk.Frame(self.content_frame, bg="black")
@@ -72,10 +74,10 @@ class MainApp(tk.Tk):
72
74
  app_func, app_desc = app_data
73
75
 
74
76
  # Create custom button with text
75
- button = CustomButton(buttons_frame, text=app_name, command=lambda app_name=app_name: self.load_app(app_name), font=('Helvetica', 12))
77
+ button = CustomButton(buttons_frame, text=app_name, command=lambda app_name=app_name: self.load_app(app_name, app_func), font=('Helvetica', 12))
76
78
  button.grid(row=i, column=0, pady=10, padx=10, sticky="w")
77
79
 
78
- description_label = tk.Label(buttons_frame, text=app_desc, bg="black", fg="white", wraplength=800, justify="left", font=('Helvetica', 10, tkFont.NORMAL))
80
+ description_label = tk.Label(buttons_frame, text=app_desc, bg="black", fg="white", wraplength=800, justify="left", font=('Helvetica', 12))
79
81
  description_label.grid(row=i, column=1, pady=10, padx=10, sticky="w")
80
82
 
81
83
  # Ensure buttons have a fixed width
@@ -125,13 +127,14 @@ class MainApp(tk.Tk):
125
127
  print(f"An error occurred while processing the logo image: {e}")
126
128
  return False
127
129
 
128
- def load_app(self, app_name):
129
- selected_app_func, _ = self.gui_apps[app_name]
130
+ def load_app(self, app_name, app_func):
131
+ # Clear the current content frame
130
132
  self.clear_frame(self.content_frame)
131
133
 
134
+ # Initialize the selected app
132
135
  app_frame = tk.Frame(self.content_frame, bg="black")
133
136
  app_frame.pack(fill=tk.BOTH, expand=True)
134
- selected_app_func(app_frame)#, self.winfo_width(), self.winfo_height())
137
+ app_func(app_frame)
135
138
 
136
139
  def clear_frame(self, frame):
137
140
  for widget in frame.winfo_children():
@@ -142,4 +145,4 @@ def gui_app():
142
145
  app.mainloop()
143
146
 
144
147
  if __name__ == "__main__":
145
- gui_app()
148
+ gui_app()
spacr/gui_annotate.py ADDED
@@ -0,0 +1,145 @@
1
+ import tkinter as tk
2
+ from tkinter import ttk
3
+ from tkinter import font as tkFont
4
+ from PIL import Image, ImageTk
5
+ import os
6
+ import requests
7
+
8
+ # Import your GUI apps
9
+ from .gui_mask_app import initiate_mask_root
10
+ from .gui_measure_app import initiate_measure_root
11
+ from .annotate_app import initiate_annotation_app_root
12
+ from .mask_app import initiate_mask_app_root
13
+ from .gui_classify_app import initiate_classify_root
14
+
15
+ from .gui_utils import CustomButton, style_text_boxes
16
+
17
+ class MainApp(tk.Tk):
18
+ def __init__(self):
19
+ super().__init__()
20
+ self.title("SpaCr GUI Collection")
21
+ self.geometry("1100x1500")
22
+ self.configure(bg="black")
23
+ #self.attributes('-fullscreen', True)
24
+
25
+ style = ttk.Style()
26
+ style_text_boxes(style)
27
+
28
+ self.gui_apps = {
29
+ "Mask": (initiate_mask_root, "Generate cellpose masks for cells, nuclei and pathogen images."),
30
+ "Measure": (initiate_measure_root, "Measure single object intensity and morphological feature. Crop and save single object image"),
31
+ "Annotate": (initiate_annotation_app_root, "Annotation single object images on a grid. Annotations are saved to database."),
32
+ "Make Masks": (initiate_mask_app_root, "Adjust pre-existing Cellpose models to your specific dataset for improved performance"),
33
+ "Classify": (initiate_classify_root, "Train Torch Convolutional Neural Networks (CNNs) or Transformers to classify single object images.")
34
+ }
35
+
36
+ self.selected_app = tk.StringVar()
37
+ self.create_widgets()
38
+
39
+ def create_widgets(self):
40
+ # Create the menu bar
41
+ #create_menu_bar(self)
42
+ # Create a canvas to hold the selected app and other elements
43
+ self.canvas = tk.Canvas(self, bg="black", highlightthickness=0, width=4000, height=4000)
44
+ self.canvas.grid(row=0, column=0, sticky="nsew")
45
+ self.grid_rowconfigure(0, weight=1)
46
+ self.grid_columnconfigure(0, weight=1)
47
+ # Create a frame inside the canvas to hold the main content
48
+ self.content_frame = tk.Frame(self.canvas, bg="black")
49
+ self.content_frame.pack(fill=tk.BOTH, expand=True)
50
+ # Create startup screen with buttons for each GUI app
51
+ self.create_startup_screen()
52
+
53
+ def create_startup_screen(self):
54
+ self.clear_frame(self.content_frame)
55
+
56
+ # Create a frame for the logo and description
57
+ logo_frame = tk.Frame(self.content_frame, bg="black")
58
+ logo_frame.pack(pady=20, expand=True)
59
+
60
+ # Load the logo image
61
+ if not self.load_logo(logo_frame):
62
+ tk.Label(logo_frame, text="Logo not found", bg="black", fg="white", font=('Helvetica', 24, tkFont.NORMAL)).pack(padx=10, pady=10)
63
+
64
+ # Add SpaCr text below the logo with padding for sharper text
65
+ tk.Label(logo_frame, text="SpaCr", bg="black", fg="#008080", font=('Helvetica', 24, tkFont.NORMAL)).pack(padx=10, pady=10)
66
+
67
+ # Create a frame for the buttons and descriptions
68
+ buttons_frame = tk.Frame(self.content_frame, bg="black")
69
+ buttons_frame.pack(pady=10, expand=True, padx=10)
70
+
71
+ for i, (app_name, app_data) in enumerate(self.gui_apps.items()):
72
+ app_func, app_desc = app_data
73
+
74
+ # Create custom button with text
75
+ button = CustomButton(buttons_frame, text=app_name, command=lambda app_name=app_name: self.load_app(app_name), font=('Helvetica', 12))
76
+ button.grid(row=i, column=0, pady=10, padx=10, sticky="w")
77
+
78
+ description_label = tk.Label(buttons_frame, text=app_desc, bg="black", fg="white", wraplength=800, justify="left", font=('Helvetica', 10, tkFont.NORMAL))
79
+ description_label.grid(row=i, column=1, pady=10, padx=10, sticky="w")
80
+
81
+ # Ensure buttons have a fixed width
82
+ buttons_frame.grid_columnconfigure(0, minsize=150)
83
+ # Ensure descriptions expand as needed
84
+ buttons_frame.grid_columnconfigure(1, weight=1)
85
+
86
+ def load_logo(self, frame):
87
+ def download_image(url, save_path):
88
+ try:
89
+ response = requests.get(url, stream=True)
90
+ response.raise_for_status() # Raise an HTTPError for bad responses
91
+ with open(save_path, 'wb') as f:
92
+ for chunk in response.iter_content(chunk_size=8192):
93
+ f.write(chunk)
94
+ return True
95
+ except requests.exceptions.RequestException as e:
96
+ print(f"Failed to download image from {url}: {e}")
97
+ return False
98
+
99
+ try:
100
+ img_path = os.path.join(os.path.dirname(__file__), 'logo_spacr.png')
101
+ print(f"Trying to load logo from {img_path}")
102
+ logo_image = Image.open(img_path)
103
+ except (FileNotFoundError, Image.UnidentifiedImageError):
104
+ print(f"File {img_path} not found or is not a valid image. Attempting to download from GitHub.")
105
+ if download_image('https://raw.githubusercontent.com/EinarOlafsson/spacr/main/spacr/logo_spacr.png', img_path):
106
+ try:
107
+ print(f"Downloaded file size: {os.path.getsize(img_path)} bytes")
108
+ logo_image = Image.open(img_path)
109
+ except Image.UnidentifiedImageError as e:
110
+ print(f"Downloaded file is not a valid image: {e}")
111
+ return False
112
+ else:
113
+ return False
114
+ except Exception as e:
115
+ print(f"An error occurred while loading the logo: {e}")
116
+ return False
117
+ try:
118
+ logo_image = logo_image.resize((800, 800), Image.Resampling.LANCZOS)
119
+ logo_photo = ImageTk.PhotoImage(logo_image)
120
+ logo_label = tk.Label(frame, image=logo_photo, bg="black")
121
+ logo_label.image = logo_photo # Keep a reference to avoid garbage collection
122
+ logo_label.pack()
123
+ return True
124
+ except Exception as e:
125
+ print(f"An error occurred while processing the logo image: {e}")
126
+ return False
127
+
128
+ def load_app(self, app_name):
129
+ selected_app_func, _ = self.gui_apps[app_name]
130
+ self.clear_frame(self.content_frame)
131
+
132
+ app_frame = tk.Frame(self.content_frame, bg="black")
133
+ app_frame.pack(fill=tk.BOTH, expand=True)
134
+ selected_app_func(app_frame)#, self.winfo_width(), self.winfo_height())
135
+
136
+ def clear_frame(self, frame):
137
+ for widget in frame.winfo_children():
138
+ widget.destroy()
139
+
140
+ def gui_app():
141
+ app = MainApp()
142
+ app.mainloop()
143
+
144
+ if __name__ == "__main__":
145
+ gui_app()
spacr/gui_classify_app.py CHANGED
@@ -131,11 +131,11 @@ def initiate_classify_root(parent_frame):
131
131
  vars_dict = generate_fields(variables, scrollable_frame)
132
132
 
133
133
  # Button section
134
- import_btn = CustomButton(scrollable_frame.scrollable_frame, text="Import Settings", command=lambda: import_settings(scrollable_frame))
134
+ import_btn = CustomButton(scrollable_frame.scrollable_frame, text="Import", command=lambda: import_settings(scrollable_frame), font=('Helvetica', 10))
135
135
  import_btn.grid(row=47, column=0, pady=20, padx=20)
136
- run_button = CustomButton(scrollable_frame.scrollable_frame, text="Run", command=lambda: start_process(q, fig_queue))
136
+ run_button = CustomButton(scrollable_frame.scrollable_frame, text="Run", command=lambda: start_process(q, fig_queue), font=('Helvetica', 10))
137
137
  run_button.grid(row=45, column=0, pady=20, padx=20)
138
- abort_button = CustomButton(scrollable_frame.scrollable_frame, text="Abort", command=initiate_abort)
138
+ abort_button = CustomButton(scrollable_frame.scrollable_frame, text="Abort", command=initiate_abort, font=('Helvetica', 10))
139
139
  abort_button.grid(row=45, column=1, pady=20, padx=20)
140
140
  progress_label = ttk.Label(scrollable_frame.scrollable_frame, text="Processing: 0%", background="black", foreground="white") # Create progress field
141
141
  progress_label.grid(row=50, column=0, columnspan=2, sticky="ew", pady=(5, 0), padx=10)
@@ -177,9 +177,23 @@ def initiate_classify_root(parent_frame):
177
177
 
178
178
  def gui_classify():
179
179
  root = tk.Tk()
180
- root.geometry("1000x800")
181
- root.title("SpaCer: generate masks")
182
- initiate_classify_root(root),
180
+ width = root.winfo_screenwidth()
181
+ height = root.winfo_screenheight()
182
+ root.geometry(f"{width}x{height}")
183
+ root.title("SpaCr: classify objects")
184
+
185
+ # Clear previous content if any
186
+ if hasattr(root, 'content_frame'):
187
+ for widget in root.content_frame.winfo_children():
188
+ widget.destroy()
189
+ root.content_frame.grid_forget()
190
+ else:
191
+ root.content_frame = tk.Frame(root)
192
+ root.content_frame.grid(row=1, column=0, sticky="nsew")
193
+ root.grid_rowconfigure(1, weight=1)
194
+ root.grid_columnconfigure(0, weight=1)
195
+
196
+ initiate_classify_root(root.content_frame)
183
197
  create_menu_bar(root)
184
198
  root.mainloop()
185
199