Home
last modified time | relevance | path

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

12

/dports/graphics/opencv/opencv-4.5.3/modules/calib3d/src/
H A Dcalibration_handeye.cpp321 solve(A, B, Pcg_, DECOMP_SVD); in calibrateHandEyeTsai()
357 solve(A, B, Tcg, DECOMP_SVD); in calibrateHandEyeTsai()
428 solve(C, d, t, DECOMP_SVD); in calibrateHandEyePark()
513 solve(C, d, t, DECOMP_SVD); in calibrateHandEyeHoraud()
592 solve(A, B, X, DECOMP_SVD); in calibrateHandEyeAndreff()
831 solve(A, b, t, DECOMP_SVD); in calibrateRobotWorldHandEyeShah()
868 solve(A, b, x, DECOMP_SVD); in calibrateRobotWorldHandEyeLi()
H A Dcompat_ptsetreg.cpp62 solveMethod = cv::DECOMP_SVD; in CvLevMarq()
118 solveMethod = cv::DECOMP_SVD; in init()
H A Dfisheye.cpp501 cv::Matx33d iR = (PP * RR).inv(cv::DECOMP_SVD); in initUndistortRectifyMap()
1244 solve(J, ex.reshape(1, (int)ex.total()), param_innov, DECOMP_SVD + DECOMP_NORMAL); in ComputeExtrinsicRefine()
H A Dptsetreg.cpp442 solve(A, B, X, DECOMP_SVD); in runKernel()
H A Dsolvepnp.cpp781 Mat Lp = L.inv(cv::DECOMP_SVD); in solvePnPRefine()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/shape/src/
H A Daff_trans.cpp147 solve(matM, matP, sol, DECOMP_SVD); in _localAffineEstimate()
177 solve(matM, matP, sol, DECOMP_SVD); in _localAffineEstimate()
/dports/graphics/opencv/opencv-4.5.3/modules/video/src/
H A Dkalman.cpp117 solve(temp3, temp2, temp4, DECOMP_SVD); in correct()
/dports/graphics/opencv/opencv-4.5.3/modules/calib3d/test/
H A Dtest_affine3.cpp73 expected = cv::Mat(affine1.matrix.inv(cv::DECOMP_SVD)) * cv::Mat(affine2.matrix, false); in TEST()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/mcc/src/
H A Dlinearize.cpp48 cv::solve(A, y_, p, DECOMP_SVD); in Polyfit()
H A Dccm.cpp236 solve(A.reshape(1, A.rows), B.reshape(1, B.rows), ccm0, DECOMP_SVD); in initialLeastSquare()
/dports/graphics/opencv/opencv-4.5.3/modules/core/src/
H A Dlapack.cpp856 if( method == DECOMP_SVD ) in invert()
1094 CV_Check(method, method == DECOMP_LU || method == DECOMP_SVD || method == DECOMP_EIG || in solve()
1236 size_t astep = method == DECOMP_SVD && !is_normal ? alignSize(m*esz, 16) : vstep; in solve()
1251 if( method == DECOMP_SVD ) in solve()
1255 size_t asize = astep*(method == DECOMP_SVD || is_normal ? n : m); in solve()
1260 if( method == DECOMP_SVD || method == DECOMP_EIG ) in solve()
1270 else if( method != DECOMP_SVD ) in solve()
1646 method == CV_SVD ? cv::DECOMP_SVD : in cvInvert()
1660 method == CV_SVD ? cv::DECOMP_SVD : in cvSolve()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/tracking/src/
H A Dunscented_kalman.cpp333 gain = xyCov * yyCov.inv(DECOMP_SVD); in correct()
H A Daugmented_unscented_kalman.cpp358 gain = xyCov * yyCov.inv(DECOMP_SVD); in correct()
/dports/graphics/opencv/opencv-4.5.3/modules/photo/src/
H A Dcalibrate.cpp152 solve(A, B, solution, DECOMP_SVD); in process()
/dports/graphics/opencv/opencv-4.5.3/modules/core/test/
H A Dtest_math.cpp2736 cv::invert(b, c, cv::DECOMP_SVD); //std::cout << b*c << std::endl; in TEST()
2786 solve(A, B, X, DECOMP_SVD); in TEST()
3149 solve(A, B, solutionSVD, DECOMP_SVD); in TEST()
3171 cv::Matx<float, 2, 1> xSVD = A.solve(b, DECOMP_SVD); in TEST()
3173 cv::Matx<float, 2, 3> iA = A.inv(DECOMP_SVD); in TEST()
3190 cv::Matx<float, 2, 1> xSVD = A.solve(b, DECOMP_SVD); in TEST()
3193 cv::Matx<float, 2, 2> iA = A.inv(DECOMP_SVD); in TEST()
3206 cv::Matx<float, 3, 1> xSVD = A.solve(b, DECOMP_SVD); in TEST()
3209 cv::Matx<float, 3, 3> iA = A.inv(DECOMP_SVD); in TEST()
3224 cv::Matx<float, 4, 1> xSVD = A.solve(b, DECOMP_SVD); in TEST()
[all …]
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/surface_matching/src/
H A Dicp.cpp217 cv::solve(A, b, rpy_t, DECOMP_SVD); in minimizePointToPlaneMetric()
/dports/graphics/opencv/opencv-4.5.3/modules/core/include/opencv2/core/
H A Dbase.hpp138 DECOMP_SVD = 1, enumerator
H A Daffine.hpp255 Affine3 inv(int method = cv::DECOMP_SVD) const;
/dports/graphics/digikam/digikam-7.4.0/core/libs/facesengine/preprocessing/shape-predictor/
H A Dmatrixoperations.cpp72 cv::invert(A, B, cv::DECOMP_SVD); in pinv()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/rgbd/src/
H A Dodometry.cpp835 const Mat& levelCameraMatrix_inv = levelCameraMatrix.inv(DECOMP_SVD); in RGBDICPOdometryImpl()
849 Mat resultRt_inv = resultRt.inv(DECOMP_SVD); in RGBDICPOdometryImpl()
916 deltaRt = resultRt * initRt.inv(DECOMP_SVD); in RGBDICPOdometryImpl()
H A Dnonrigid_icp.cpp455 bool result = solve(A_reg, b_reg, nodeTwists, DECOMP_SVD); in estimateWarpNodes()
H A Dfast_icp.cpp123 solve(A, b, x, DECOMP_SVD); in estimateTransformT()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/ccalib/src/
H A Domnidir.cpp404 cv::Matx33d iKR = (PP*RR).inv(cv::DECOMP_SVD); in initUndistortRectifyMap()
405 cv::Matx33d iK = PP.inv(cv::DECOMP_SVD); in initUndistortRectifyMap()
406 cv::Matx33d iR = RR.inv(cv::DECOMP_SVD); in initUndistortRectifyMap()
660 Mat res = A.inv(DECOMP_SVD) * B; in initializeCalibration()
/dports/graphics/opencv/opencv-4.5.3/modules/imgproc/src/
H A Dshapedescr.cpp453 solve( A, b, x, DECOMP_SVD ); in fitEllipseNoDirect()
470 solve(A, b, x, DECOMP_SVD); in fitEllipseNoDirect()
/dports/graphics/opencv/opencv-4.5.3/modules/core/misc/java/test/
H A DCoreTest.java797 double cond = Core.invert(src, dst, Core.DECOMP_SVD); in testInvertMatMatInt()

12