Effacer les filtres
Effacer les filtres

Problems with readPointCloud function

12 vues (au cours des 30 derniers jours)
Pierluigi Amodio
Pierluigi Amodio le 15 Fév 2022
I have used the following functions to read data from a las file
lasReader = lasFileReader('DataCloud.las');
ptCloud = readPointCloud(lasReader);
The obtained pointCloud object has ptCloud.Location stored in single precision even if it also accepts values in double precision. Since for my data it is quite important to have double precision locations (and I am sure that in my las file locations are in double precision), it is possible to suggest to readPointCloud to save locations in double precision?
Thanks a lot for your help
  1 commentaire
Helge Nysæter
Helge Nysæter le 11 Mai 2022
I have the same problem. The decimals in the UTM-north-values are lost, and only one remains for the eastings. I then tried to move the origin with pctransform() before retrieving the coordinates from the Location-property. This resulted in more decimals for the eastings, but only one decimal for the northings.

Connectez-vous pour commenter.

Réponses (1)

Helge Nysæter
Helge Nysæter le 12 Mai 2022
Read utm-coordinates from one .las-file, shift origin, and then write to a new .las-file
pkt = lasdata('kd_1.las')
origoX = floor(min(pkt.x))
origoY = floor(min(pkt.y))
pkt.x = pkt.x-origoX
pkt.y = pkt.y-origoY
pkt.z = pkt.z
write_las(pkt,'kd_2.las')

Produits


Version

R2021b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by