Please refresh the page if equations are not rendered correctly.
---------------------------------------------------------------
PolyData.delaunay_2d
Apply a 2D Delaunay filter along the best fitting plane.
该函数仅仅用于从点云数据生成2D平面,而非曲面
delaunay_2d — PyVista 0.36.1 documentation
例:
点云数据:
平面网格:
PolyData.delaunay_3d
delaunay_3d — PyVista 0.36.1 documentation
该函数实际上是从面或点云数据生成四面体网格,而非三角形面网格!
例
PolyDataFilters.reconstruct_surface
reconstruct_surface — PyVista 0.36.1 documentation
这是真正的从点云数据生成面的函数,采用隐式面重建方法(A signed measure of the distance to the surface is computed and sampled on a regular grid. The grid can then be contoured at zero to extract the surface. )然而,真正的大量点存在时(测试案例:26000点,等10分钟未成功,MATLAB几秒钟完成),效率堪忧。
Comments NOTHING