Hi Andy, is it possible that marching_cubes_lewiner is deprecated?
In order for fusion.py to run, I had to modify the following in two places:
verts = measure.marching_cubes_lewiner(tsdf_vol, level=0)[0]
to:
verts = measure.marching_cubes(tsdf_vol, level=0, method='lewiner')[0]
Thank you!