open3d.t.io.write_point_cloud

open3d.t.io.write_point_cloud(filename, pointcloud, write_ascii=True, compressed=False, print_progress=False)

Function to write PointCloud with tensor attributes to file

Parameters
  • filename (str) – Path to file.

  • pointcloud (open3d.cpu.pybind.t.geometry.PointCloud) – The PointCloud object for I/O

  • write_ascii (bool, optional, default=True) – Set to True to output in ascii format, otherwise binary format will be used.

  • compressed (bool, optional, default=False) – Set to True to write in compressed format.

  • print_progress (bool, optional, default=False) – If set to true a progress bar is visualized in the console

Returns

bool