Spaces:
Runtime error
Runtime error
jens
commited on
Commit
·
32a0a1c
1
Parent(s):
0a1a41a
fixed inputs
Browse files
app.py
CHANGED
@@ -62,8 +62,8 @@ with block:
|
|
62 |
with gr.Column():
|
63 |
pcl_figure = gr.Model3D(label="3-D Reconstruction", clear_color=[1.0, 1.0, 1.0, 1.0])
|
64 |
with gr.Row():
|
65 |
-
max_depth = gr.Slider(minimum=0, maximum=10, step=0.01, default=1, label='
|
66 |
-
min_depth = gr.Slider(minimum=0, maximum=10, step=0.01, default=0.1, label='
|
67 |
n_samples = gr.Slider(minimum=1e3, maximum=1e6, step=1e3, default=1e3, label='Number of Samples')
|
68 |
cube_size = gr.Slider(minimum=0.00001, maximum=0.001, step=0.000001, default=0.00001, label='Cube size')
|
69 |
depth_reconstruction_btn = gr.Button('Depth Reconstruction', variant = 'primary')
|
@@ -75,7 +75,7 @@ with block:
|
|
75 |
# components
|
76 |
components = {point_coords, point_labels, image_edit_trigger, masks, cutout_idx, input_image,
|
77 |
point_label_radio, text, reset_btn, sam_sgmt_everything_btn,
|
78 |
-
sam_decode_btn, depth_reconstruction_btn, prompt_image, lbl_image, n_samples, cube_size, selected_masks_image}
|
79 |
|
80 |
def on_upload_image(input_image, upload_image):
|
81 |
## Mirror because gradio.image webcam has mirror = True
|
|
|
62 |
with gr.Column():
|
63 |
pcl_figure = gr.Model3D(label="3-D Reconstruction", clear_color=[1.0, 1.0, 1.0, 1.0])
|
64 |
with gr.Row():
|
65 |
+
max_depth = gr.Slider(minimum=0, maximum=10, step=0.01, default=1, label='Max Depth')
|
66 |
+
min_depth = gr.Slider(minimum=0, maximum=10, step=0.01, default=0.1, label='Min Depth')
|
67 |
n_samples = gr.Slider(minimum=1e3, maximum=1e6, step=1e3, default=1e3, label='Number of Samples')
|
68 |
cube_size = gr.Slider(minimum=0.00001, maximum=0.001, step=0.000001, default=0.00001, label='Cube size')
|
69 |
depth_reconstruction_btn = gr.Button('Depth Reconstruction', variant = 'primary')
|
|
|
75 |
# components
|
76 |
components = {point_coords, point_labels, image_edit_trigger, masks, cutout_idx, input_image,
|
77 |
point_label_radio, text, reset_btn, sam_sgmt_everything_btn,
|
78 |
+
sam_decode_btn, depth_reconstruction_btn, prompt_image, lbl_image, n_samples, max_depth, min_depth, cube_size, selected_masks_image}
|
79 |
|
80 |
def on_upload_image(input_image, upload_image):
|
81 |
## Mirror because gradio.image webcam has mirror = True
|