Open3D(C++) 计算点云模型的表面积和体积


注意:该算法是基于三角网模型进行点云体积和表面积的计算。

Open3D中,点云构建模型常用的方法有:
八、三维重建

一、函数解析

/// Function that computes the surface area of the mesh, i.e. the sum of
    /// the individual triangle surfaces.
    double GetSurfaceArea() const;
  • 计算网格的表面积,即单个三角形表面的和。
 

猜你喜欢

转载自blog.csdn.net/qq_36686437/article/details/128245011#comments_26325992