Skip to content
Snippets Groups Projects
Commit 2cd7b157 authored by tee1g21's avatar tee1g21
Browse files

Changed check text

parent 380d397f
No related branches found
No related tags found
1 merge request!54.2.2 depth chbox
...@@ -41,7 +41,7 @@ def select_Image(event): ...@@ -41,7 +41,7 @@ def select_Image(event):
label.configure(text="Image is selected. Press run to create scene.") label.configure(text="Image is selected. Press run to create scene.")
def depthmap_creation(): def depthmap_creation():
print("Checked ", check.get()) print("Upload Depth Map: ", check.get())
def stanfordRoom_selection(): def stanfordRoom_selection():
if checkStanford.get() == 1: if checkStanford.get() == 1:
...@@ -152,7 +152,7 @@ run_button = tk.Button( ...@@ -152,7 +152,7 @@ run_button = tk.Button(
bg="green", bg="green",
fg="white", 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 ) 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) 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) shift_image_check = tk.Checkbutton(window, text='Shift input image', variable=shift_image, onvalue=1, offvalue=0, command=shift_image_selection)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment