Table of Contents

Enum DecompMethod

Namespace
Emgu.CV.CvEnum
Assembly
Emgu.CV.dll

cvInvert method

public enum DecompMethod

Fields

Cholesky = 3

method for a symmetric positively-defined matrix

Eig = 2

Eig

LU = 0

Gaussian elimination with optimal pivot element chose In case of LU method the function returns src1 determinant (src1 must be square). If it is 0, the matrix is not inverted and src2 is filled with zeros.

Normal = 16

Normal

QR = 4

QR decomposition

Svd = 1

Singular value decomposition (SVD) method In case of SVD methods the function returns the inversed condition number of src1 (ratio of the smallest singular value to the largest singular value) and 0 if src1 is all zeros. The SVD methods calculate a pseudo-inverse matrix if src1 is singular