open3d.geometry.select_down_sample¶
-
open3d.geometry.
select_down_sample
(*args, **kwargs)¶ Overloaded function.
select_down_sample(input: open3d.geometry.PointCloud, indices: List[int], invert: bool = False) -> open3d.geometry.PointCloud
Function to select points from input pointcloud into output pointcloud.
input
: The input triangle point cloud.indices
: Indices of points to be selected.invert
: Set toTrue
to invert the selection of indices.select_down_sample(input: open3d.geometry.TriangleMesh, indices: List[int]) -> open3d.geometry.TriangleMesh
Function to select mesh from input triangle mesh into output triangle mesh.
input
: The input triangle mesh.indices
: Indices of vertices to be selected.