4x4 Transformation Matrix to tf Transform
I am trying to convert a 4x4 transformation matrix (Eigen::Matrix4f) that is an output of PCL's ICP into a tf Transform that I can publish. The 4x4 consists of a 3x3 rotation matrix and a 3x1 translation matrix.
Is there an easy way to make this conversion?
The translation matrix is pretty straightforward to pull out of the 4x4 and then assign to the tf Transform.
I am confused on the data types and functions to get the rotation working. My plan was to create a 3x3 matrix (data type?), assign it proper values from the 4x4 (method?) that I could then convert into a quaternion (function?), which I then could assign to the transform (I've seen an example of this).
Any help is appreciated. Thank you.
Here's a related question in python: http://answers.ros.org/question/21298...