1 | initial version |
For now I'm just getting the first column of each matrix, like:
cv::SVD::compute(A, s, u, v);
u = u.col(0);
v = v.col(0);
With this, I'm getting a mean error of less than 0,0002 in my Wstar matrix (comparing with matlab result).
Anyone has a better idea than this?