Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -78,13 +78,13 @@ with gr.Blocks(css=css) as demo:
|
|
78 |
input_image = gr.Image(label="Input Image", type='numpy', elem_id='img-display-input')
|
79 |
with gr.Column():
|
80 |
processing_res_choice = gr.Radio(
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
submit = gr.Button(value="Compute Depth and Normals")
|
89 |
|
90 |
colored_depth_file = gr.File(label="Colored Depth Image", elem_id="download")
|
|
|
78 |
input_image = gr.Image(label="Input Image", type='numpy', elem_id='img-display-input')
|
79 |
with gr.Column():
|
80 |
processing_res_choice = gr.Radio(
|
81 |
+
[
|
82 |
+
("Recommended (768)", 768),
|
83 |
+
("Native", 0),
|
84 |
+
],
|
85 |
+
label="Processing resolution",
|
86 |
+
value=768,
|
87 |
+
)
|
88 |
submit = gr.Button(value="Compute Depth and Normals")
|
89 |
|
90 |
colored_depth_file = gr.File(label="Colored Depth Image", elem_id="download")
|