Closed vnmsklnk closed 1 year ago
In the current implementation, I get an error if the file extension is not .bin:
.bin
TypeError: read_point_cloud(): incompatible function arguments. The following argument types are supported: 1. (filename: str, format: str = 'auto', remove_nan_points: bool = False, remove_infinite_points: bool = False, print_progress: bool = False) -> open3d.cpu.pybind.geometry.PointCloud Invoked with: PosixPath('/workspace/dataset/pc_uv_labelled_01.xyz')
This PR fixes the problem by converting PosixPath to string.
Thanks!
In the current implementation, I get an error if the file extension is not
.bin
:This PR fixes the problem by converting PosixPath to string.