글
why use a homogeneous transform matrix?
Research/Robotics
2015. 3. 9. 11:47
Pose is described by just 3 numbers:
- Offset in the x-direction
- Offset in the y-direction
- A rotation angle
The homogeneous transformation is inefficient in this respect, requiring three times as many numbers as actually required. Some of those 9 numbers have fixed values like 0 or 1, and others repeated or repeated with a different sign. Its advantage is the ability to compound poses by matrix-matrix multiplication, or transform vectors by matrix-vector multiplication. These operations are very convenient to express in an environment like MATLAB, and with modern computers the extra computation required is almost insignificant.
* Ref :
[1] https://moocs.qut.edu.au/courses/814/learn
'Research > Robotics' 카테고리의 다른 글
Euler angles and Cardan angles (0) | 2015.03.11 |
---|---|
why column vectors of rotation matrix is new axis ? (0) | 2015.03.11 |
difference between Euclidean and Cartesian (0) | 2015.03.04 |
서보모터(servo motor)와 스텝모터(step motor)의 차이 (0) | 2014.12.04 |
케이블 배선 꼬는 이유.. (0) | 2014.12.04 |