in extract_meshes, due to igl (version you're using doesn't build on certain systems) update, we should have
v, _, _, f = igl.remove_duplicate_vertices(np.array(octree.mesh_v), tri_faces, 1e-7)
and also np.vstack should be np.concatenate to avoid batching issues.
Putting these fixes in, I was able to run the code. Otherwise it crashes. Please address these changes. Thank you!
in extract_meshes, due to igl (version you're using doesn't build on certain systems) update, we should have
v, _, _, f = igl.remove_duplicate_vertices(np.array(octree.mesh_v), tri_faces, 1e-7)and also np.vstack should be np.concatenate to avoid batching issues.
Putting these fixes in, I was able to run the code. Otherwise it crashes. Please address these changes. Thank you!