zino36 commited on
Commit
f3cc519
·
verified ·
1 Parent(s): 38e3cd5

Update demo.py

Browse files
Files changed (1) hide show
  1. demo.py +9 -9
demo.py CHANGED
@@ -16,15 +16,15 @@ from scipy.spatial.transform import Rotation
16
  import tempfile
17
  import shutil
18
 
19
- from mast3r.cloud_opt.sparse_ga import sparse_global_alignment
20
- from mast3r.cloud_opt.tsdf_optimizer import TSDFPostProcess
21
-
22
- import mast3r.utils.path_to_dust3r # noqa
23
- from dust3r.image_pairs import make_pairs
24
- from dust3r.utils.image import load_images
25
- from dust3r.utils.device import to_numpy
26
- from dust3r.viz import add_scene_cam, CAM_COLORS, OPENGL, pts3d_to_trimesh, cat_meshes
27
- from dust3r.demo import get_args_parser as dust3r_get_args_parser
28
 
29
  import matplotlib.pyplot as pl
30
 
 
16
  import tempfile
17
  import shutil
18
 
19
+ from sparse_ga import sparse_global_alignment
20
+ from tsdf_optimizer import TSDFPostProcess
21
+
22
+ import path_to_dust3r # noqa
23
+ from image_pairs import make_pairs
24
+ from image import load_images
25
+ from device import to_numpy
26
+ from viz import add_scene_cam, CAM_COLORS, OPENGL, pts3d_to_trimesh, cat_meshes
27
+ from demo import get_args_parser as dust3r_get_args_parser
28
 
29
  import matplotlib.pyplot as pl
30