
[CV] Intrinsic Rotation and Extrinsic Rotation (Euler-Angle)
·
Programming/DIP
Intrinsic Rotation (내재적 회전)-Euler Angle RotationIntrinsic Rotation은 회전하는 객체의 고유한 좌표계를 기준으로 rotation이 이루어지는 방식(좌표계가 회전함)임. 각 rotation이 수행된 후, 다음 rotation은 이전 rotation으로 인해 변경된 "객체의 좌표계"를 기준으로 수행됨: 회전된 축에서 이루어짐. 예를 들어, x축에 대한 회전을 먼저 수행하면 y축 및 z축의 방향이 변하게 됨. 이후 y축에 대한 회전은 변경된 y축을 기준으로 수행되는 것임. 이 방식은 회전이 객체 자체에 상대적으로 적용된다는 것임. rotated rotation 이라고도 불림: rxyz 라고 표기시 intrinsic Euler Angle rotation으로 순서..