GonzaloMG commited on
Commit
ef248bc
1 Parent(s): 504ff19

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -7
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
- ("Native", 0),
83
- ("Recommended", 768),
84
- ],
85
- label="Processing resolution",
86
- value=0,
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")