当前位置: 代码迷 >> 综合 >> RuntimeError: [Open3D ERROR] ReconstructBallPivoting requires normals
  详细解决方案

RuntimeError: [Open3D ERROR] ReconstructBallPivoting requires normals

热度:28   发布时间:2024-02-22 17:20:08.0

Question

在用python做三维点云重建的时候遇到了这样一个问题RuntimeError: [Open3D ERROR] ReconstructBallPivoting requires normals
原因是点云本身自带的法向量信息由于某些原因丢失了

Solution

解决方案如下:
1.用meshlab打开此点云文件
2.Filters —> Normals, Curvatures and Oriantation —> compute normals for point sets 如下图所示在这里插入图片描述
Number of neigbors默认值是10,一般就用这个值就可以了(具体功能我也不懂……慢慢调吧)
3.点击apply
在这里插入图片描述

4.Filters —> Remeshing simplification and reconstruction—> surface Reconstruction Ball Pivoting
在这里插入图片描述
5.参数根据需要自己调节
在这里插入图片描述
6.file—> save as保存,记得最后勾选上normal
在这里插入图片描述

reference

meshlab计算点云法向量

  相关解决方案