From 2cd7b1571dd20dba31ed84aeb6b7f402bde7e2af Mon Sep 17 00:00:00 2001 From: tee1g21 <92794120+tee1g21@users.noreply.github.com> Date: Tue, 5 Nov 2024 00:38:57 +0000 Subject: [PATCH] Changed check text --- scripts/GUI.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/GUI.py b/scripts/GUI.py index 8c860cd..458da5c 100644 --- a/scripts/GUI.py +++ b/scripts/GUI.py @@ -41,7 +41,7 @@ def select_Image(event): label.configure(text="Image is selected. Press run to create scene.") def depthmap_creation(): - print("Checked ", check.get()) + print("Upload Depth Map: ", check.get()) def stanfordRoom_selection(): if checkStanford.get() == 1: @@ -152,7 +152,7 @@ run_button = tk.Button( bg="green", fg="white", ) -depth_check = tk.Checkbutton(window, text='Create a depth map(360 MonoDepth)',variable=check, onvalue=1, offvalue=0, command=depthmap_creation) +depth_check = tk.Checkbutton(window, text='Upload a depth map(360 MonoDepth)',variable=check, onvalue=1, offvalue=0, command=depthmap_creation) stanford_check = tk.Checkbutton(window, text='Run for stanford2D3D dataset',variable=checkStanford, onvalue=1, offvalue=0,command=stanfordRoom_selection ) include_top_check = tk.Checkbutton(window, text='Include Top in Mesh', variable=include_top, onvalue=1, offvalue=0) shift_image_check = tk.Checkbutton(window, text='Shift input image', variable=shift_image, onvalue=1, offvalue=0, command=shift_image_selection) -- GitLab