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

Debugging check variable

parent 561efec1
No related branches found
No related tags found
1 merge request!54.2.2 depth chbox
......@@ -43,7 +43,7 @@ def select_Image(event):
def depthmap_creation():
print("Manually upload depth map: ", uploadDepthCheck.get())
if uploadDepthCheck == 0:
if uploadDepthCheck.get() == 0:
check.set(1)
else:
check.set(0) #temporary. TODO implement Mona's monodepth upload
......@@ -93,7 +93,8 @@ def runProcess():
print(f"Attempting to run: {combined_bat}")
print(f"With arguments: {file_path}, {str(check.get())}, {include_top_option}, {shift_image_option}")
if check == 1:
# depth map check
if check.get() == 1:
print("Auto depth map")
else:
print("Manual depth map")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment