Spaces:
Runtime error
Runtime error
jens
commited on
Commit
·
a3d7074
1
Parent(s):
6303b23
masking
Browse files- app.py +3 -1
- inference.py +2 -1
app.py
CHANGED
@@ -55,7 +55,9 @@ with block:
|
|
55 |
print("depth reconstruction")
|
56 |
image = inputs[raw_image]
|
57 |
# depth reconstruction
|
58 |
-
|
|
|
|
|
59 |
return {pcl_figure: path}
|
60 |
|
61 |
depth_reconstruction_btn.click(on_depth_reconstruction_btn_click, components, [pcl_figure], queue=False)
|
|
|
55 |
print("depth reconstruction")
|
56 |
image = inputs[raw_image]
|
57 |
# depth reconstruction
|
58 |
+
mask = inputs[masks][0][0]
|
59 |
+
path = dpt.generate_obj(image, inputs[n_samples], mask)
|
60 |
+
|
61 |
return {pcl_figure: path}
|
62 |
|
63 |
depth_reconstruction_btn.click(on_depth_reconstruction_btn_click, components, [pcl_figure], queue=False)
|
inference.py
CHANGED
@@ -70,9 +70,10 @@ class DepthPredictor:
|
|
70 |
ax.scatter(points,size=0.01, c=colors, marker='o')
|
71 |
return fig
|
72 |
|
73 |
-
def generate_obj(self, image, n_samples):
|
74 |
# Step 1: Create a point cloud
|
75 |
point_cloud, color_array = self.generate_pcl(image)
|
|
|
76 |
# sample 1000 points
|
77 |
idxs = np.random.choice(len(point_cloud), int(n_samples))
|
78 |
point_cloud = point_cloud[idxs]
|
|
|
70 |
ax.scatter(points,size=0.01, c=colors, marker='o')
|
71 |
return fig
|
72 |
|
73 |
+
def generate_obj(self, image, n_samples, mask):
|
74 |
# Step 1: Create a point cloud
|
75 |
point_cloud, color_array = self.generate_pcl(image)
|
76 |
+
point_cloud, color_array = point_cloud[mask.ravel()], color_array[mask.ravel()]
|
77 |
# sample 1000 points
|
78 |
idxs = np.random.choice(len(point_cloud), int(n_samples))
|
79 |
point_cloud = point_cloud[idxs]
|