Cv2Rodrigues Method (Double, Double)
|
converts rotation matrix to rotation vector using Rodrigues transformation
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic static void Rodrigues(
double[,] matrix,
out double[] vector
)
Public Shared Sub Rodrigues (
matrix As Double(,),
<OutAttribute> ByRef vector As Double()
)
public:
static void Rodrigues(
array<double,2>^ matrix,
[OutAttribute] array<double>^% vector
)
static member Rodrigues :
matrix : float[,] *
vector : float[] byref -> unit
OpenCvSharp.Cv2.Rodrigues = function(matrix, vector);
Parameters
- matrix
- Type: SystemDouble
Input rotation matrix (3x3). - vector
- Type: SystemDouble
Output rotation vector (3x1).
See Also