open3d.io.write_point_cloud¶
-
open3d.io.write_point_cloud(filename, pointcloud, write_ascii=False, compressed=False)¶ Function to write PointCloud to file
- Parameters
filename (str) – Path to file.
pointcloud (open3d.geometry.PointCloud) – The
PointCloudobject for I/Owrite_ascii (bool, optional, default=False) – Set to
Trueto output in ascii format, otherwise binary format will be used.compressed (bool, optional, default=False) – Set to
Trueto write in compressed format.
- Returns
bool