Borrar filtros
Borrar filtros

Problems with readPointCloud function

12 visualizaciones (últimos 30 días)
Pierluigi Amodio
Pierluigi Amodio el 15 de Feb. de 2022
Respondida: Helge Nysæter el 12 de Mayo de 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 comentario
Helge Nysæter
Helge Nysæter el 11 de Mayo de 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.

Iniciar sesión para comentar.

Respuestas (1)

Helge Nysæter
Helge Nysæter el 12 de Mayo de 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')

Categorías

Más información sobre I/O en Help Center y File Exchange.

Productos


Versión

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by