Searched refs:DECOMP_SVD (Results 1 – 14 of 14) sorted by relevance
/external/opencv3/modules/shape/src/ |
D | aff_trans.cpp | 142 solve(matM, matP, sol, DECOMP_SVD); in _localAffineEstimate() 172 solve(matM, matP, sol, DECOMP_SVD); in _localAffineEstimate()
|
/external/opencv3/modules/calib3d/test/ |
D | test_affine3.cpp | 74 expected = cv::Mat(affine1.matrix.inv(cv::DECOMP_SVD)) * cv::Mat(affine2.matrix, false); in TEST()
|
/external/opencv3/modules/video/src/ |
D | kalman.cpp | 113 solve(temp3, temp2, temp4, DECOMP_SVD); in correct()
|
/external/opencv3/modules/core/src/ |
D | lapack.cpp | 803 if( method == DECOMP_SVD ) in invert() 1197 method = DECOMP_SVD; in solve() 1202 size_t astep = method == DECOMP_SVD && !is_normal ? alignSize(m*esz, 16) : vstep; in solve() 1217 if( method == DECOMP_SVD ) in solve() 1221 size_t asize = astep*(method == DECOMP_SVD || is_normal ? n : m); in solve() 1227 if( method == DECOMP_SVD || method == DECOMP_EIG ) in solve() 1237 else if( method != DECOMP_SVD ) in solve() 1539 method == CV_SVD ? cv::DECOMP_SVD : in cvInvert() 1553 method == CV_SVD ? cv::DECOMP_SVD : in cvSolve()
|
/external/opencv3/modules/imgproc/src/ |
D | shapedescr.cpp | 418 solve(A, b, x, DECOMP_SVD); in fitEllipse() 430 solve( A, b, x, DECOMP_SVD ); in fitEllipse() 445 solve(A, b, x, DECOMP_SVD); in fitEllipse()
|
D | imgwarp.cpp | 6250 solve( A, B, X, DECOMP_SVD ); in getPerspectiveTransform()
|
/external/opencv3/modules/photo/src/ |
D | calibrate.cpp | 126 solve(A, B, solution, DECOMP_SVD); in process()
|
/external/opencv3/modules/core/include/opencv2/core/ |
D | base.hpp | 136 DECOMP_SVD = 1, enumerator
|
D | affine.hpp | 108 Affine3 inv(int method = cv::DECOMP_SVD) const;
|
/external/opencv3/modules/calib3d/src/ |
D | ptsetreg.cpp | 436 solve(A, B, X, DECOMP_SVD); in runKernel()
|
D | fisheye.cpp | 446 cv::Matx33d iR = (PP * RR).inv(cv::DECOMP_SVD); in initUndistortRectifyMap() 1185 solve(J, ex.reshape(1, (int)ex.total()), param_innov, DECOMP_SVD + DECOMP_NORMAL); in ComputeExtrinsicRefine()
|
/external/opencv3/modules/core/test/ |
D | test_math.cpp | 2571 cv::invert(b, c, cv::DECOMP_SVD); //std::cout << b*c << std::endl; in TEST() 2620 solve(A, B, X, DECOMP_SVD); in TEST()
|
/external/opencv3/modules/java/src/ |
D | core+Core.java | 110 DECOMP_SVD = 1, field in Core
|
/external/opencv3/modules/core/misc/java/test/ |
D | CoreTest.java | 787 double cond = Core.invert(src, dst, Core.DECOMP_SVD); in testInvertMatMatInt()
|