Spaces:
Running
on
Zero
Running
on
Zero
slothfulxtx
commited on
Commit
·
34120aa
1
Parent(s):
34a1c67
fix npz name bug
Browse files
app.py
CHANGED
@@ -172,7 +172,7 @@ def infer_geometry(
|
|
172 |
np.savez_compressed(
|
173 |
output_npz_path,
|
174 |
point_map=point_maps.cpu().numpy().astype(np.float16),
|
175 |
-
|
176 |
)
|
177 |
|
178 |
output_disp_path = Path(save_folder, run_id, f'disp.mp4')
|
|
|
172 |
np.savez_compressed(
|
173 |
output_npz_path,
|
174 |
point_map=point_maps.cpu().numpy().astype(np.float16),
|
175 |
+
mask=valid_masks.cpu().numpy().astype(np.bool_)
|
176 |
)
|
177 |
|
178 |
output_disp_path = Path(save_folder, run_id, f'disp.mp4')
|