Computes RQ decomposition of 3x3 matrix
Namespace: OpenCvSharp.CPlusPlus
Assembly: OpenCvSharp.CPlusPlus (in OpenCvSharp.CPlusPlus.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static Vec3d RQDecomp3x3( double[,] src, out double[,] mtxR, out double[,] mtxQ, out double[,] qx, out double[,] qy, out double[,] qz )
Parameters
- src
- Type: SystemDouble
3x3 input matrix. - mtxR
- Type: SystemDouble
Output 3x3 upper-triangular matrix. - mtxQ
- Type: SystemDouble
Output 3x3 orthogonal matrix. - qx
- Type: SystemDouble
Optional output 3x3 rotation matrix around x-axis. - qy
- Type: SystemDouble
Optional output 3x3 rotation matrix around y-axis. - qz
- Type: SystemDouble
Optional output 3x3 rotation matrix around z-axis.
Return Value
Type: Vec3d[Missing <returns> documentation for "M:OpenCvSharp.CPlusPlus.Cv2.RQDecomp3x3(System.Double[0:,0:],System.Double[0:,0:]@,System.Double[0:,0:]@,System.Double[0:,0:]@,System.Double[0:,0:]@,System.Double[0:,0:]@)"]
See Also