Home
last modified time | relevance | path

Searched refs:DECOMP_NORMAL (Results 1 – 10 of 10) sorted by relevance

/dports/graphics/opencv/opencv-4.5.3/contrib/modules/videostab/src/
H A Dglobal_motion.cpp168 solve(A, b, sol, DECOMP_NORMAL | DECOMP_LU); in estimateGlobMotionLeastSquaresTranslationAndScale()
303 solve(A, b, sol, DECOMP_NORMAL | DECOMP_LU); in estimateGlobMotionLeastSquaresSimilarity()
342 solve(A, b, sol, DECOMP_NORMAL | DECOMP_LU); in estimateGlobMotionLeastSquaresAffine()
/dports/graphics/opencv/opencv-4.5.3/modules/core/include/opencv2/core/
H A Dbase.hpp151 DECOMP_NORMAL = 16 enumerator
/dports/graphics/opencv/opencv-4.5.3/modules/photo/src/
H A Dcontrast_preserve.hpp317 solve(A, B, X, DECOMP_NORMAL); in wei_update_matrix()
/dports/graphics/opencv/opencv-4.5.3/modules/core/src/
H A Dlapack.cpp1089 bool is_normal = (method & DECOMP_NORMAL) != 0; in solve()
1093 method &= ~DECOMP_NORMAL; in solve()
1662 A.rows > A.cols ? cv::DECOMP_QR : cv::DECOMP_LU) + (is_normal ? cv::DECOMP_NORMAL : 0) ); in cvSolve()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/aruco/src/
H A Daruco.cpp731 solve(A, B, C, DECOMP_NORMAL); in _interpolate2Dline()
741 solve(A, B, C, DECOMP_NORMAL); in _interpolate2Dline()
/dports/graphics/opencv/opencv-4.5.3/modules/core/misc/java/test/
H A DCoreTest.java1804 assertTrue(Core.solve(a, b, dst, Core.DECOMP_QR | Core.DECOMP_NORMAL));
/dports/graphics/opencv/opencv-4.5.3/modules/calib3d/src/
H A Dfisheye.cpp1244 solve(J, ex.reshape(1, (int)ex.total()), param_innov, DECOMP_SVD + DECOMP_NORMAL); in ComputeExtrinsicRefine()
H A Ddls.cpp239 cv::solve(H, A, A, cv::DECOMP_NORMAL); in build_coeff_matrix()
/dports/graphics/opencv/opencv-4.5.3/modules/core/misc/objc/test/
H A DCoreTest.swift1471 … a, src2: b, dst: dst, flags: DecompTypes.DECOMP_QR.rawValue | DecompTypes.DECOMP_NORMAL.rawValue)) in testSolveMatMatMatInt()
/dports/graphics/opencv/opencv-4.5.3/modules/core/test/
H A Dtest_math.cpp3143 solve(A, B, solutionQR, DECOMP_QR | DECOMP_NORMAL); in TEST()