converts rotation vector to rotation matrix using Rodrigues transformation
Namespace: OpenCvSharp.CPlusPlus
Assembly: OpenCvSharp.CPlusPlus (in OpenCvSharp.CPlusPlus.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static void Rodrigues( double[] vector, out double[,] matrix, out double[,] jacobian )
Parameters
- vector
- Type: SystemDouble
Input rotation vector (3x1). - matrix
- Type: SystemDouble
Output rotation matrix (3x3). - jacobian
- Type: SystemDouble
Optional output Jacobian matrix, 3x9, which is a matrix of partial derivatives of the output array components with respect to the input array components.
See Also