murtiad / las2pcd

Convert .LAS point cloud to PCL-compatible .PCD format
GNU General Public License v3.0
52 stars 34 forks source link

execution problem #7

Open grenoblien opened 4 years ago

grenoblien commented 4 years ago

I have MAKE las2pcd successfully, but I have crossed this issue.

INFO : Loading : /home/common/Data/PointCloud/Mesh.las INFO : 1500203 points detected in /home/common/Data/PointCloud/Mesh.las terminate called after throwing an instance of 'std::logic_error' what(): basic_string::_M_construct null not valid Aborted (core dumped)

Is this problem caused because of my file? or would there be other reason?

Thank you in advance

chizao89757 commented 4 years ago

do you solve this? I got the same problem with you....

yoshiyama commented 4 years ago

I had the same problem but solved it. In my case arguments were not wrote correctly as below. las2pcd input.las

Right format of arguments is below. So this makes success. las2pcd input.las output.pcd

So I forgot to write the output filename.

chizao89757 commented 4 years ago

thank u so much