Open3D icon indicating copy to clipboard operation
Open3D copied to clipboard

mesh smoothing creates nan

Open humanbeingZ opened this issue 3 years ago • 2 comments
trafficstars

Checklist

Describe the issue

I load a triangle mesh into open3d, call mesh.filter_smooth_taubin and save the filtered mesh to disk. The result contains a lot of nan which is not expected.

Steps to reproduce the bug

import open3d as o3d


if __name__ == '__main__':
    mesh = o3d.io.read_triangle_mesh('./input.ply')
    out = mesh.filter_smooth_taubin(2)
    o3d.io.write_triangle_mesh('./output.ply', out)

Error message

No response

Expected behavior

I expect no nan generated.

Open3D, Python and System information

- Operating system: Ubuntu 20.04
- Python version: 3.8.10
- Open3D version: 0.15.2
- System architecture: x86
- Is this a remote workstation?: no
- How did you install Open3D?: pip

Additional information

No response

humanbeingZ avatar Jul 26 '22 08:07 humanbeingZ

data.zip

humanbeingZ avatar Jul 26 '22 08:07 humanbeingZ

I can confirm this.

Jaykob avatar Jan 23 '24 11:01 Jaykob