forgor (missed) one usage
Browse files
app.py
CHANGED
@@ -33,7 +33,7 @@ def get_depth(rgb):
|
|
33 |
np.stack((y * w + x,
|
34 |
(y + 1) * w + x,
|
35 |
y * w + (x + 1)), axis=-1)
|
36 |
-
[(~pick_edges.flatten()) * (x < w - 1) * (y <
|
37 |
))
|
38 |
|
39 |
tf = tempfile.NamedTemporaryFile(suffix=".obj").name
|
|
|
33 |
np.stack((y * w + x,
|
34 |
(y + 1) * w + x,
|
35 |
y * w + (x + 1)), axis=-1)
|
36 |
+
[(~pick_edges.flatten()) * (x < w - 1) * (y < h - 1)]
|
37 |
))
|
38 |
|
39 |
tf = tempfile.NamedTemporaryFile(suffix=".obj").name
|