Type for cvSVD

Namespace: Emgu.CV.CvEnum
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
[FlagsAttribute]
public enum SVD_TYPE
<FlagsAttribute> _
Public Enumeration SVD_TYPE
[FlagsAttribute]
public enum class SVD_TYPE

Members

MemberDescription
CV_SVD_DEFAULT
The default type
CV_SVD_MODIFY_A
enables modification of matrix src1 during the operation. It speeds up the processing.
CV_SVD_U_T
means that the tranposed matrix U is returned. Specifying the flag speeds up the processing.
CV_SVD_V_T
means that the tranposed matrix V is returned. Specifying the flag speeds up the processing.

See Also