Type for cvSVD

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

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