open3d.io.write_line_set

open3d.io.write_line_set(filename, line_set, write_ascii=False, compressed=False, print_progress=False)

Function to write LineSet to file

Parameters
  • filename (str) – Path to file.

  • line_set (open3d.cpu.pybind.geometry.LineSet) – The LineSet object for I/O

  • write_ascii (bool, optional, default=False) – 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