(pcd, output_path, ply_ascii=False, ply_compression=True, csv_delimiter=",")
| 357 | print("\nexport completed.") |
| 358 | |
| 359 | def 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 |
| 364 | def remove_NaN(array): |
no outgoing calls
no test coverage detected