jens commited on
Commit
13461b6
·
1 Parent(s): 129fda7

removed webcam

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -33,7 +33,7 @@ with block:
33
  # UI
34
  with gr.Column():
35
  with gr.Row():
36
- input_image = gr.Image(label='Input', type='pil', source='webcam', tool=None)
37
  with gr.Column():
38
  sam_encode_btn = gr.Button('Encode', variant='primary')
39
  sam_encode_status = gr.Label('Not encoded yet')
@@ -116,7 +116,7 @@ with block:
116
  def on_depth_reconstruction_btn_click(inputs):
117
  print("depth reconstruction")
118
  image = inputs[raw_image]
119
- path = dpt.generate_obj_masks(image=image, n_samples=inputs[n_samples], cube_size=inputs[cube_size], masks=inputs[masks])
120
  return {pcl_figure: path}
121
  depth_reconstruction_btn.click(on_depth_reconstruction_btn_click, components, [pcl_figure], queue=False)
122
 
 
33
  # UI
34
  with gr.Column():
35
  with gr.Row():
36
+ input_image = gr.Image(label='Input', type='pil', tool=None)
37
  with gr.Column():
38
  sam_encode_btn = gr.Button('Encode', variant='primary')
39
  sam_encode_status = gr.Label('Not encoded yet')
 
116
  def on_depth_reconstruction_btn_click(inputs):
117
  print("depth reconstruction")
118
  image = inputs[raw_image]
119
+ path = dpt.generate_obj_rgb(image=image, n_samples=inputs[n_samples], cube_size=inputs[cube_size], masks=inputs[masks])
120
  return {pcl_figure: path}
121
  depth_reconstruction_btn.click(on_depth_reconstruction_btn_click, components, [pcl_figure], queue=False)
122