I have a lot of point clouds in format .LAS
What I'd like to do is to create a batch file which will automatize the "compute normals" process and save the point clouds files in the format .PLY
Here is the code of the batch I've written: (it gives me another ply file in output however without any normals)
Code: Select all
"C:\Program Files\CloudCompare\CloudCompare.exe" -AUTO_SAVE OFF -COMPUTE_NORMALS -O E1.las -C_EXPORT_FMT PLY -SAVE_CLOUDS
Code: Select all
"C:\Program Files\CloudCompare\CloudCompare.exe" -AUTO_SAVE OFF -COMPUTE_NORMALS -O E1.las -ORIENT_NORMS_MST 6 -C_EXPORT_FMT PLY -SAVE_CLOUDS
Does anyone have any idea how to make it work ?
Thank you very much :)