Search found 7815 matches

by daniel
Tue Feb 18, 2025 11:05 am
Forum: Questions
Topic: Min and Max Diameter
Replies: 2
Views: 224

Re: Min and Max Diameter

You could maybe fit a circle on each section, the compute the distance of the points of each section to their respective circle entity (with 'Tools > Distances > Compute Cloud/Primitive dist.'). And then if you look at the resulting distances (the scalar field that should appear on the cloud), you'l...
by daniel
Tue Feb 18, 2025 10:41 am
Forum: Questions
Topic: Extract Sections along polylines tool problem
Replies: 3
Views: 1123

Re: Extract Sections along polylines tool problem

Sadly, only some intense debugging of the algorithm could help understand the issue... And it's probably a matter of a particular threshold somewhere.
by daniel
Tue Feb 18, 2025 10:39 am
Forum: Questions
Topic: Circular polyline for unfolding of cylinders
Replies: 1
Views: 52

Re: Circular polyline for unfolding of cylinders

Hum, too bad. Don't hesitate to send me the DXF file (admin@cloudcompare.org) in case there's a minor thing to change on our side. Else, if you can generate the circle (= cylindrical section) coordinates in Excel for instance, you can then export the points as a list of X Y Z coordinates in a .poly ...
by daniel
Tue Feb 18, 2025 10:33 am
Forum: CloudCompare
Topic: How does CC render mesh(or point cloud) from a ccHObject?
Replies: 1
Views: 238

Re: How does CC render mesh(or point cloud) from a ccHObject?

Look for the drawMeOnly() method in ccMesh. The draw() method is generic and recursively calls itself on the child entites, calling 'drawMeOnly()' on each entity each time.
by daniel
Tue Feb 18, 2025 10:32 am
Forum: Questions
Topic: Classification of points from RGB
Replies: 2
Views: 117

Re: Classification of points from RGB

Sorry, I can't see the screenshots.
by daniel
Tue Feb 18, 2025 10:31 am
Forum: Questions
Topic: global translation of the point cloud
Replies: 1
Views: 31

Re: global translation of the point cloud

I think you should look at GDAL or PDAL to do the conversion first. CloudCompare only handles orthometric coordinates.
by daniel
Tue Feb 18, 2025 10:30 am
Forum: Questions
Topic: Volume calculation for vertical cloud points
Replies: 1
Views: 35

Re: Volume calculation for vertical cloud points

I think it will be safer to rotate the clouds first to that Z becomes the dimensions with the most changes (so more something facing the cliff I guess). The 2.5D Volume Calculation tool only looks for changes along Z.
by daniel
Tue Feb 18, 2025 10:26 am
Forum: Questions
Topic: Automate alignment of two point clouds
Replies: 5
Views: 13340

Re: Automate alignment of two point clouds

Well, if the two clouds have roughly the same shape and extents, then yes, your workflow is good. I would just insist on the 'overlap' parameter for the ICP algorithm. This should not be too high otherwise some 'worn' points will be used in the matching process. And it should also take into account ...
by daniel
Tue Feb 18, 2025 10:23 am
Forum: Questions
Topic: Measuring sag of the powerline
Replies: 2
Views: 2170

Re: Measuring sag of the powerline

Sorry for the late reply.

Sadly, I don't see any tool or trick that would help you...
by daniel
Tue Feb 18, 2025 10:22 am
Forum: Questions
Topic: Coordinates length
Replies: 2
Views: 1000

Re: Coordinates length

This is related to the 'Global Shift' mechanism. CC stores only 32bits values to reduce the memory consumption. If you reject the Global Shift at loading time, and keep global coordinates, you'll indeed lose accuracy. You should accept the (temporary) Global shift while working on the cloud. It will...