Home
last modified time | relevance | path

Searched refs:DECOMP_SVD (Results 1 – 14 of 14) sorted by relevance

/external/opencv3/modules/shape/src/
Daff_trans.cpp142 solve(matM, matP, sol, DECOMP_SVD); in _localAffineEstimate()
172 solve(matM, matP, sol, DECOMP_SVD); in _localAffineEstimate()
/external/opencv3/modules/calib3d/test/
Dtest_affine3.cpp74 expected = cv::Mat(affine1.matrix.inv(cv::DECOMP_SVD)) * cv::Mat(affine2.matrix, false); in TEST()
/external/opencv3/modules/video/src/
Dkalman.cpp113 solve(temp3, temp2, temp4, DECOMP_SVD); in correct()
/external/opencv3/modules/core/src/
Dlapack.cpp803 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/
Dshapedescr.cpp418 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()
Dimgwarp.cpp6250 solve( A, B, X, DECOMP_SVD ); in getPerspectiveTransform()
/external/opencv3/modules/photo/src/
Dcalibrate.cpp126 solve(A, B, solution, DECOMP_SVD); in process()
/external/opencv3/modules/core/include/opencv2/core/
Dbase.hpp136 DECOMP_SVD = 1, enumerator
Daffine.hpp108 Affine3 inv(int method = cv::DECOMP_SVD) const;
/external/opencv3/modules/calib3d/src/
Dptsetreg.cpp436 solve(A, B, X, DECOMP_SVD); in runKernel()
Dfisheye.cpp446 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/
Dtest_math.cpp2571 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/
Dcore+Core.java110 DECOMP_SVD = 1, field in Core
/external/opencv3/modules/core/misc/java/test/
DCoreTest.java787 double cond = Core.invert(src, dst, Core.DECOMP_SVD); in testInvertMatMatInt()