Manipulating location matrix in the Point cloud data

2 visualizaciones (últimos 30 días)
Rishabh Mittal
Rishabh Mittal el 30 de Oct. de 2019
Respondida: JESUS DAVID ARIZA ROYETH el 30 de Oct. de 2019
I am working with the pointCloud object with folloign properties:
Location: [622894×3 single]
Color: [622894×3 uint8]
Normal: []
Count: 622894
XLimits: [-13.0343 13.7152]
YLimits: [-3.3536 7.7093]
ZLimits: [-15.0000 -4.7615]
I would like to multiple the location matrix by -1. I am unable to acces the location matrix to apply this multiplication operation.

Respuestas (2)

Sai Bhargav Avula
Sai Bhargav Avula el 30 de Oct. de 2019
Editada: Sai Bhargav Avula el 30 de Oct. de 2019
You should be able to access it by
loc = PtcloudObject.Location

JESUS DAVID ARIZA ROYETH
JESUS DAVID ARIZA ROYETH el 30 de Oct. de 2019
Hi, you can pass the information to another object :
ptCloudold = pointCloud(rand(100,3,'single'));
newptcloud= pointCloud(ptCloudold.Location*-1,'Color',ptCloudold.Color,'Normal',ptCloudold.Normal)

Categorías

Más información sobre Point Cloud Processing en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by