Converts a rotation vector to rotation matrix or vice versa. Rotation vector is a compact representation of rotation matrix. Direction of the rotation vector is the rotation axis and the length of the vector is the rotation angle around the axis. The rotation matrix R, corresponding to the rotation vector r.
Namespace:
Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.1.0.649 (2.1.0.649)
Syntax
C# | Visual Basic | Visual C++ |
Parameters
- src
- IntPtr
The input rotation vector (3x1 or 1x3) or rotation matrix (3x3).
- dst
- IntPtr
The output rotation matrix (3x3) or rotation vector (3x1 or 1x3), respectively
- jacobian
- IntPtr
Optional output Jacobian matrix, 3x9 or 9x3 - partial derivatives of the output array components w.r.t the input array components
Return Value
[Missing <returns> documentation for "M:Emgu.CV.CvInvoke.cvRodrigues2(System.IntPtr,System.IntPtr,System.IntPtr)"]