jens commited on
Commit
17dfbdb
·
1 Parent(s): d718048
Files changed (2) hide show
  1. app.py +1 -1
  2. inference.py +1 -1
app.py CHANGED
@@ -116,7 +116,7 @@ with block:
116
  def on_depth_reconstruction_btn_click(inputs):
117
  print("depth reconstruction")
118
  image = inputs[input_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
 
 
116
  def on_depth_reconstruction_btn_click(inputs):
117
  print("depth reconstruction")
118
  image = inputs[input_image]
119
+ path = dpt.generate_obj_rgb(image=image, n_samples=inputs[n_samples], cube_size=inputs[cube_size]) #
120
  return {pcl_figure: path}
121
  depth_reconstruction_btn.click(on_depth_reconstruction_btn_click, components, [pcl_figure], queue=False)
122
 
inference.py CHANGED
@@ -36,7 +36,7 @@ class DepthPredictor:
36
  output = prediction.cpu().numpy()
37
  formatted = (output * 255 / np.max(output)).astype('uint8')
38
  #img = Image.fromarray(formatted)
39
- return output
40
 
41
  def generate_pcl(self, image):
42
  print(np.array(image).shape)
 
36
  output = prediction.cpu().numpy()
37
  formatted = (output * 255 / np.max(output)).astype('uint8')
38
  #img = Image.fromarray(formatted)
39
+ return formatted
40
 
41
  def generate_pcl(self, image):
42
  print(np.array(image).shape)