Page 1 of 1

Command line classification

Posted: Thu May 02, 2024 1:49 pm
by sjurado
Hello,

I am classifying point clouds using the following command :
" .\CloudCompare -c_export_fmt LAS -ext las -o "micro_cloud.las" -3dmasc_classify "vsimple.txt" "PC1=1" -save_clouds "

The LAS file obtained rearranges the points on lines (see screenshot) :
bug_3dmasc_classification.png
bug_3dmasc_classification.png (38.84 KiB) Viewed 1026 times
Do you have an idea why ?
Is there a way to spot the issue or fix the problem ?

Thank you

Re: Command line classification

Posted: Thu May 02, 2024 2:35 pm
by daniel
Yes, that's because with the command line you need to explicitly specify how to manage large coordinates.

You should add

Code: Select all

-GLOBAL_SHIFT AUTO
just after

Code: Select all

-O

Re: Command line classification

Posted: Mon May 27, 2024 9:49 am
by sjurado
It worked ! Thanks