Singular Value Decomposition. More...
#include <core.hpp>
Public Types | |
enum | Flags { MODIFY_A = 1 , NO_UV = 2 , FULL_UV = 4 } |
Public Member Functions | |
SVD () | |
the default constructor More... | |
SVD (InputArray src, int flags=0) | |
SVD & | operator() (InputArray src, int flags=0) |
the operator that performs SVD. The previously allocated u, w and vt are released. More... | |
void | backSubst (InputArray rhs, OutputArray dst) const |
performs a singular value back substitution. More... | |
Static Public Member Functions | |
static void | compute (InputArray src, OutputArray w, OutputArray u, OutputArray vt, int flags=0) |
decomposes matrix and stores the results to user-provided matrices More... | |
static void | compute (InputArray src, OutputArray w, int flags=0) |
static void | backSubst (InputArray w, InputArray u, InputArray vt, InputArray rhs, OutputArray dst) |
performs back substitution More... | |
static void | solveZ (InputArray src, OutputArray dst) |
solves an under-determined singular linear system More... | |
template<typename _Tp , int m, int n, int nm> | |
static void | compute (const Matx< _Tp, m, n > &a, Matx< _Tp, nm, 1 > &w, Matx< _Tp, m, nm > &u, Matx< _Tp, n, nm > &vt) |
template<typename _Tp , int m, int n, int nm> | |
static void | compute (const Matx< _Tp, m, n > &a, Matx< _Tp, nm, 1 > &w) |
template<typename _Tp , int m, int n, int nm, int nb> | |
static void | backSubst (const Matx< _Tp, nm, 1 > &w, const Matx< _Tp, m, nm > &u, const Matx< _Tp, n, nm > &vt, const Matx< _Tp, m, nb > &rhs, Matx< _Tp, n, nb > &dst) |
Public Attributes | |
Mat | u |
Mat | w |
Mat | vt |
Singular Value Decomposition.
Class for computing Singular Value Decomposition of a floating-point matrix. The Singular Value Decomposition is used to solve least-square problems, under-determined linear systems, invert matrices, compute condition numbers, and so on.
If you want to compute a condition number of a matrix or an absolute value of its determinant, you do not need u
and vt
. You can pass flags=SVD::NO_UV|... . Another flag SVD::FULL_UV indicates that full-size u and vt must be computed, which is not necessary most of the time.
enum cv::SVD::Flags |
cv::SVD::SVD | ( | ) |
the default constructor
initializes an empty SVD structure
cv::SVD::SVD | ( | InputArray | src, |
int | flags = 0 |
||
) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. initializes an empty SVD structure and then calls SVD::operator()
src | decomposed matrix. The depth has to be CV_32F or CV_64F. |
flags | operation flags (SVD::Flags) |
|
static |
void cv::SVD::backSubst | ( | InputArray | rhs, |
OutputArray | dst | ||
) | const |
performs a singular value back substitution.
The method calculates a back substitution for the specified right-hand side:
Using this technique you can either get a very accurate solution of the convenient linear system, or the best (in the least-squares terms) pseudo-solution of an overdetermined linear system.
rhs | right-hand side of a linear system (u*w*v')*dst = rhs to be solved, where A has been previously decomposed. |
dst | found solution of the system. |
|
static |
performs back substitution
|
static |
|
static |
|
static |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. computes singular values of a matrix
src | decomposed matrix. The depth has to be CV_32F or CV_64F. |
w | calculated singular values |
flags | operation flags - see SVD::Flags. |
|
static |
decomposes matrix and stores the results to user-provided matrices
The methods/functions perform SVD of matrix. Unlike SVD::SVD constructor and SVD::operator(), they store the results to the user-provided matrices:
src | decomposed matrix. The depth has to be CV_32F or CV_64F. |
w | calculated singular values |
u | calculated left singular vectors |
vt | transposed matrix of right singular vectors |
flags | operation flags - see SVD::Flags. |
SVD& cv::SVD::operator() | ( | InputArray | src, |
int | flags = 0 |
||
) |
the operator that performs SVD. The previously allocated u, w and vt are released.
The operator performs the singular value decomposition of the supplied matrix. The u,vt
, and the vector of singular values w are stored in the structure. The same SVD structure can be reused many times with different matrices. Each time, if needed, the previous u,vt
, and w are reclaimed and the new matrices are created, which is all handled by Mat::create.
src | decomposed matrix. The depth has to be CV_32F or CV_64F. |
flags | operation flags (SVD::Flags) |
|
static |
solves an under-determined singular linear system
The method finds a unit-length solution x of a singular linear system A*x = 0. Depending on the rank of A, there can be no solutions, a single solution or an infinite number of solutions. In general, the algorithm solves the following problem:
src | left-hand-side matrix. |
dst | found solution. |
Mat cv::SVD::u |
Mat cv::SVD::vt |
Mat cv::SVD::w |