Search found 56 matches

by HeadLess
Thu Mar 07, 2024 3:09 pm
Forum: Questions
Topic: Skipping images when using the command line
Replies: 7
Views: 1673

Re: Skipping images when using the command line

well maybe it is just a correlation not the actual cause. clouds with images usually not decimated/structured clouds, and they contains all the points. So you quickly increase the point count. for example 1 setup can contain easily 40 million point (600mb-700mb e57). So probably you reach your limit...
by HeadLess
Wed Feb 21, 2024 10:42 am
Forum: Questions
Topic: Calculations in the CLI
Replies: 8
Views: 1436

Re: Calculations in the CLI

I created a quick PR to make this possible so the given command_file would work, if it gets merged as is. https://github.com/CloudCompare/CloudCompare/pull/1967 -NO_TIMESTAMP -AUTO_SAVE OFF -O "cloud_with_sf" -SF_OP 0 DIV MAX -NOT_IN_PLACE -FILTER_SF 0.95 1 -RENAME_ENTITIES "filtered&...
by HeadLess
Tue Feb 20, 2024 7:53 am
Forum: Questions
Topic: Calculations in the CLI
Replies: 8
Views: 1436

Re: Calculations in the CLI

I looked at it yesterday. -FILTER_SF only accept doubles or exactly MIN or MAX string. so computation is not possible. Then i was looking for a workaround but SF_OP does not accept MIN/MAX as values i was trying to do a normalized SF so you can just drop points below a known number. But that is stil...
by HeadLess
Mon Feb 19, 2024 8:37 am
Forum: Questions
Topic: Calculations in the CLI
Replies: 8
Views: 1436

Re: Calculations in the CLI

your $MAX value was not properly converted by your shell, probably because using single quotes, or escaping or because of the brackets. make sure that your command sends proper commands to CC. you could try to send your commands to a file, then load that with -COMMAND_FILE {file} command, that way y...
by HeadLess
Thu Feb 08, 2024 6:52 pm
Forum: Questions
Topic: Conversion to LAS (Problem - null bounding-box) - solved
Replies: 4
Views: 904

Re: Conversion to LAS (Problem - null bounding-box)

is it the latest beta? Can you share your cloud? Can you try saving as something else? because las reader/writer were replaced in the 2.13 beta, so maybe we could know the issue is there. Or can you try it with another release 2.12 stable for example?
by HeadLess
Thu Feb 08, 2024 5:28 pm
Forum: Questions
Topic: Conversion to LAS (Problem - null bounding-box) - solved
Replies: 4
Views: 904

Re: Conversion to LAS (Problem - null bounding-box)

Is this a cloud with high coordinates?
if yes use a proper global shift during loading.
try the command below:

Code: Select all

cloudcompare -SILENT -AUTO_SAVE OFF -C_EXPORT_FMT LAS -O -GLOBAL_SHIFT AUTO pointcloud.e57 -SAVE_CLOUDS FILE '"destination/path/to/pointcloud.las"' 
by HeadLess
Tue Jan 23, 2024 12:26 pm
Forum: Questions
Topic: Scalar represent a kind of density inside a point cloud
Replies: 4
Views: 2125

Re: Scalar represent a kind of density inside a point cloud

Tools - > other -> compute geometric features (density number of neighbours)

It won't give distence of closest point, instead it gives a number of points inside a given radius.
by HeadLess
Tue Jan 16, 2024 5:19 pm
Forum: CloudCompare
Topic: Bounding box dimensions and octree calculation
Replies: 1
Views: 5280

Re: Bounding box dimensions and octree calculation

I think you answered all of your question.

bounding box correct

number of box = 2^octreeLevel, and each box has the same size. so if you know the bbbeforehand you can calculate the resulting octree box size.
by HeadLess
Fri Jan 05, 2024 9:50 pm
Forum: Questions
Topic: Resolution of point cloud
Replies: 1
Views: 40259

Re: Resolution of point cloud

you can calculate point density with given radius. (tools -> other -> calculate geometric features ->point density)
I'd say this is what you are looking for.
by HeadLess
Fri Jan 05, 2024 1:52 pm
Forum: Questions
Topic: Command Line M3C2 Invalid parameter: 1 file names, 3 clouds
Replies: 3
Views: 64671

Re: Command Line M3C2 Invalid parameter: 1 file names, 3 clouds

What is the whole output?

But i think your issue is with the -SAVE_CLOUDS -FILE
Use only filenames not full path and don't use spaces there.

Or at least try to use double quotes inside that option like below

-SAVE_CLOUDS -FILE "'first file name' 'second file name'"