Type for cvSVD
Namespace:
Emgu.CV.CvEnumAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)
Syntax
C# |
---|
[FlagsAttribute] public enum SVD_TYPE |
Visual Basic (Declaration) |
---|
<FlagsAttribute> _ Public Enumeration SVD_TYPE |
Visual C++ |
---|
[FlagsAttribute] public enum class SVD_TYPE |
Members
Member name | Description | |
---|---|---|
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.
|