It would be nice to subsample by length on axis.
I use it for pointclouds thats from areal photos of the ground so the hight is on Z axis.
It would help to subsample with 0,5 on X/Y axis and 0,1 on Z axis.
Subsampling on axis
Re: Subsampling on axis
Ah, that would make the algorithm much more complicated... well, a totally different algorithm actually.
Daniel, CloudCompare admin
-
- Posts: 4
- Joined: Fri Oct 01, 2021 9:14 am
- Contact:
Re: Subsampling on axis
You could try a workaround:
- scale the pointcloud along the Z axis only: x(1.0) y(1.0) z(5.0)
- apply subsampling (0.5)
- scale the cloud back: x(1.0) y(1.0) z(0.2)