i am new to ROS. i want to ask how to multiply two transformation matrix in tf ROS?
tf ROS transformation matrix multiplication
ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
If you're working in C++ the tf::Transform class overloads the * operator to combine transformations. So it is as simple as:
tf::Transform A, B;
tf::Transform C = A * B;
see the reference here.
Asked: 2018-07-11 08:33:20 -0600
Seen: 2,943 times
Last updated: Jul 11 '18