Manipulating location matrix in the Point cloud data

1 visualizzazione (ultimi 30 giorni)
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.

Risposte (2)

Sai Bhargav Avula
Sai Bhargav Avula il 30 Ott 2019
Modificato: Sai Bhargav Avula il 30 Ott 2019
You should be able to access it by
loc = PtcloudObject.Location

JESUS DAVID ARIZA ROYETH
JESUS DAVID ARIZA ROYETH il 30 Ott 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)

Community Treasure Hunt

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

Start Hunting!

Translated by