filters.delaunay¶
The Delaunay Filter creates a triangulated mesh fulfilling the Delaunay condition from a collection of points.
The filter is implemented using the delaunator-cpp library, a C++ port of the JavaScript Delaunator library.
The filter currently only supports 2D Delaunay triangulation, using the X
and Y
dimensions of the point cloud.
Example¶
[
"input.las",
{
"type": "filters.delaunay"
},
{
"type": "writers.ply",
"filename": "output.ply",
"faces": true
}
]
Options¶
None.