Manipulating location matrix in the Point cloud data
Ältere Kommentare anzeigen
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.
Antworten (2)
Sai Bhargav Avula
am 30 Okt. 2019
Bearbeitet: Sai Bhargav Avula
am 30 Okt. 2019
You should be able to access it by
loc = PtcloudObject.Location
JESUS DAVID ARIZA ROYETH
am 30 Okt. 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)
Kategorien
Mehr zu Point Cloud Processing finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!