MCPcopy
hub / github.com/PiLiDAR/PiLiDAR / save_pointcloud_threaded

Function save_pointcloud_threaded

lib/pointcloud.py:359–361  ·  view source on GitHub ↗
(pcd, output_path, ply_ascii=False, ply_compression=True, csv_delimiter=",")

Source from the content-addressed store, hash-verified

357 print("\nexport completed.")
358
359def save_pointcloud_threaded(pcd, output_path, ply_ascii=False, ply_compression=True, csv_delimiter=","):
360 export_thread = threading.Thread(target=save_pointcloud, args=(pcd, output_path, ply_ascii, ply_compression, csv_delimiter))
361 export_thread.start()
362
363# Remove rows with NaN values from a numpy array
364def remove_NaN(array):

Callers 2

filter_3D.pyFile · 0.90
postprocess_3DFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected