Search found 7 matches
- Wed Oct 18, 2023 1:44 pm
- Forum: Requests, new functionalities
- Topic: Global Translation 'No to All' button
- Replies: 2
- Views: 10974
Re: Global Translation 'No to All' button
Thank you sir, no rush just tiresome clicking no 200+ times
- Fri Oct 13, 2023 2:08 pm
- Forum: Requests, new functionalities
- Topic: Global Translation 'No to All' button
- Replies: 2
- Views: 10974
Global Translation 'No to All' button
Hello,
I noticed that there is a "Yes to All" but not a no to all on the global shift pane. Can that be added?
Thanks,
I noticed that there is a "Yes to All" but not a no to all on the global shift pane. Can that be added?
Thanks,
- Fri Oct 06, 2023 12:31 pm
- Forum: Questions
- Topic: CloudCompare Versions
- Replies: 3
- Views: 2212
Re: CloudCompare Versions
Code: Select all
cloudCompareCommand = ['"C:\Program Files\CloudCompare\cloudcompare.exe" -AUTO_SAVE OFF ', ...
'-C_EXPORT_FMT LAS -O "', inputFile '" ', ...
'-GLOBAL_SHIFT AUTO "' '" ', ...
'-SAVE_CLOUDS FILE "', outputFile '"'];
- Tue Oct 03, 2023 6:06 pm
- Forum: Questions
- Topic: CloudCompare Versions
- Replies: 3
- Views: 2212
CloudCompare Versions
Hello, I have v2.13.3.beta downloaded, and am trying to use the command line mode I want to use -GLOBAL_SHIFT Auto. But it says the command is not recognized. Basically just trying to automate the automatic global shift that is provided when you open a .las file. The wiki says that I need v2.3, but ...
- Tue Jun 27, 2023 1:48 pm
- Forum: Questions
- Topic: Getting Invalid Step Size for Spatial Resampling with using Commandline CC
- Replies: 4
- Views: 2861
Re: Getting Invalid Step Size for Spatial Resampling with using Commandline CC
Yeah, I tried that.
- Mon Jun 19, 2023 12:54 pm
- Forum: Questions
- Topic: Getting Invalid Step Size for Spatial Resampling with using Commandline CC
- Replies: 4
- Views: 2861
Re: Getting Invalid Step Size for Spatial Resampling with using Commandline CC
'echo %SubSamplingDensity%' would output the variable value.
So if you did
echo would output 0.1 to the command prompt
So if you did
Code: Select all
set SubSamplingDensity = 0.1
echo %SubSamplingDensity%
- Wed Jun 14, 2023 8:55 pm
- Forum: Questions
- Topic: Getting Invalid Step Size for Spatial Resampling with using Commandline CC
- Replies: 4
- Views: 2861
Getting Invalid Step Size for Spatial Resampling with using Commandline CC
@echo off setlocal rem Specify the paths to the CloudCompare executable and the input directory set CLOUD_COMPARE_PATH="C:\Program Files\CloudCompare\CloudCompare.exe" set INPUT_DIR="D:\test_input" set OUTPUT_DIR="D:\test_output" rem Specify the number of blocks set BL...