Search found 7 matches

by justgord
Sun Sep 14, 2025 2:50 am
Forum: CloudCompare
Topic: how to achieve xray style orthoimages
Replies: 4
Views: 29240

Re: how to achieve xray style orthoimages

ok.. so it generates a new cloud with the xray 'height' .. then you rasterize that new cloud to get the ortho-image ?

That seemed to give the desired output.
by justgord
Sun Sep 14, 2025 2:27 am
Forum: CloudCompare
Topic: how to achieve xray style orthoimages
Replies: 4
Views: 29240

Re: how to achieve xray style orthoimages

Daniel,

great - thanks for putting this xray feature in the next release / current beta.

I did grab the latest code and managed to get the xray view coming up in the preview in Raster dialog...

and it says its generated a new scalar field xray ..
BUT, I didnt seem to be able to save that as an ...
by justgord
Fri Sep 12, 2025 9:51 am
Forum: CloudCompare
Topic: how to achieve xray style orthoimages
Replies: 4
Views: 29240

Re: how to achieve xray style orthoimages

in pseudocode : somethinhg like this :



case PER_CELL_UNIQUE_VOXEL_COUNT_VALUE:
{
// count num voxels for "xray" ortho-image

size_t count = 0;
for (size_t n = 1; n < cellPointVal.size(); ++n)
{
int prev = round(cellPointVal[n - 1] / gridStep);
int curr = round(cellPointVal[n ...
by justgord
Fri Sep 12, 2025 9:38 am
Forum: CloudCompare
Topic: how to achieve xray style orthoimages
Replies: 4
Views: 29240

how to achieve xray style orthoimages

hi,

Is there a way to use the raster feature to make an xray style orthoimage ?

sample xray ortho here : https://quato.blob.core.windows.net/uploads/pub/surfhouse_xray_MVYG.png


To make an xray orthoimage you basically plot density, or point count over each xy cell - if more points occur above or ...
by justgord
Fri Sep 12, 2025 1:38 am
Forum: Plugins
Topic: Plugin developer needed (asap)
Replies: 2
Views: 80645

Re: Plugin developer needed (asap)


Hello,

I'm a of and on user of CloudCompare for a few years. I would really like to hire a plugin developer that could help me with some specific automations for the preprocessing of buildings. Are you well established in creating plugins? Do you have time on very short notice? Please contact me ...
by justgord
Sat Feb 22, 2025 2:48 am
Forum: Questions
Topic: Min and Max Diameter
Replies: 5
Views: 27170

Re: Min and Max Diameter


Ok, so for the records, I've introduced a real 'circle' entity (previously the 'Fit > Circle' tool was only producing a polyline). And this circle entity can now be promoted to a cylinder. This allows to compute the (signed) distances between the points and the cylinder.


Great feature .. I ...
by justgord
Thu Feb 20, 2025 5:05 am
Forum: Questions
Topic: Extract and subsample cloud data from .e57
Replies: 3
Views: 15012

Re: Extract and subsample cloud data from .e57


Hello All,

I received a large (~45GB) .e57 file that contains a lot of panorama images (over 300 scan points). The images are a huge problem because my computer only has 40GB RAM. I discovered that I can manually stop CC from loading the panoramas and somehow succeeded to subsample the point ...