tsdf-fusion-python
tsdf-fusion-python copied to clipboard
.ply file not generating while running demo.py
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'
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