tsdf-fusion-python icon indicating copy to clipboard operation
tsdf-fusion-python copied to clipboard

.ply file not generating while running demo.py

Open ahar opened this issue 6 years ago • 1 comments

Hi, I got the following error while running the demo.py.

Traceback (most recent call last):
  File "demo.py", line 52, in <module>
    verts,faces,norms,colors = tsdf_vol.get_mesh()
  File "/home/anindya/tsdf-fusion-python/fusion.py", line 262, in get_mesh
    verts,faces,norms,vals = measure.marching_cubes_lewiner(tsdf_vol,level=0)
AttributeError: 'module' object has no attribute 'marching_cubes_lewiner'

ahar avatar Apr 11 '19 00:04 ahar

Have you installed scikit-image? It possesses the marching_cubes_lewiner functionality: https://scikit-image.org/docs/dev/api/skimage.measure.html.

If not, you can install the current stable version 1.15.0 as follows: pip install -U scikit-image

kingsman142 avatar Jun 28 '19 04:06 kingsman142