why point correspondence to rotation matrix calculation is not my expected?

조회 수: 5 (최근 30일)
for example, at first ,one point P1(1,0,0) rotate pi/2 angle by y-axis,then get the point P2(0,0,-1), then rotate pi/2 angle by x-axis, then get the point P3(0,1,0). i use eul2rotm function to specify eular angle to get rotation matrix,then get the destination point by premultipy format,but get the result is not my expected P3?
P1 = [1,0,0];
eular = [0,pi/2,pi/2]
eular = 1×3
0 1.5708 1.5708
r = eul2rotm(eular,'ZYX'); % premultipy format
destinationPt = r*P1' % not same as P3 ?
destinationPt = 3×1
0.0000 0 -1.0000
if i take eular decompose into two component, ie rotate pi/2 angle correspondance to y-axis,x-axis, then i can get my expected result P3.
eularY = [0,pi/2,0];
eularX = [0,0,pi/2];
ry = eul2rotm(eularY);
rx = eul2rotm(eularX);
destiPt = rx*ry*P1' % is same as P3, which is my expect result.
destiPt = 3×1
0.0000 1.0000 -0.0000
i don't understand why eular angles vector three components not write together?

채택된 답변

Matt J
Matt J 2022년 5월 11일
편집: Matt J 2022년 5월 11일
r needs to be pre-multiplied by P1, not post-multiplied.
P1 = [1,0,0];
eular = [0,pi/2,pi/2];
r = eul2rotm(eular,'ZYX');
destinationPt = P1*r
destinationPt = 1×3
0.0000 1.0000 0.0000
  댓글 수: 12
cui,xingxing
cui,xingxing 2022년 10월 10일
It is good to hear that since R2022b, the computer vision toolbox and image process toolbox have started to support the use of the pre-multiply convention as a priority,while the default for other toolkboxs is the pre-multiply convention remains unchanged.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Image Processing and Computer Vision에 대해 자세히 알아보기

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by