Transform 3D point cloud
이전 댓글 표시
I have a point cloud and a rotation matrix like this:
rot=[ -0.48664090 0.36675647 0.79288739;
-0.67601788 -0.73296887 -0.075871207;
-0.55333579 0.57292831 -0.60462612 ]
How can I transform the point cloud using this rotation matrix? I cannot use this matrix with pctrasform and rigid3d.
댓글 수: 3
Matt J
2021년 3월 17일
I cannot use this matrix with pctrasform and rigid3d.
Why not?
Ernest Porqueras
2021년 3월 17일
Ernest Porqueras
2021년 3월 17일
채택된 답변
추가 답변 (1개)
Bjorn Gustavsson
2021년 3월 17일
If you have a 3-x-n array of point-coordinates you can rotate them in 2 ways, either rotate the points or the coordinate system.
For example like this:
r_rotated = rot*r_points;
HTH
카테고리
도움말 센터 및 File Exchange에서 Point Cloud Processing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!