Home
last modified time | relevance | path

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

/external/opencv3/modules/videostab/src/
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()
/external/opencv3/modules/photo/src/
Dcontrast_preserve.hpp362 solve(A, B, X, DECOMP_NORMAL); in wei_update_matrix()
/external/opencv3/modules/core/include/opencv2/core/
Dbase.hpp149 DECOMP_NORMAL = 16 enumerator
/external/opencv3/modules/core/src/
Dlapack.cpp1055 bool is_normal = (method & DECOMP_NORMAL) != 0; in solve()
1059 method &= ~DECOMP_NORMAL; in solve()
1555 A.rows > A.cols ? cv::DECOMP_QR : cv::DECOMP_LU) + (is_normal ? cv::DECOMP_NORMAL : 0) ); in cvSolve()
/external/opencv3/modules/java/src/
Dcore+Core.java114 DECOMP_NORMAL = 16, field in Core
/external/opencv3/modules/core/misc/java/test/
DCoreTest.java1762 assertTrue(Core.solve(a, b, dst, Core.DECOMP_QR | Core.DECOMP_NORMAL)); in testSolveMatMatMatInt()
/external/opencv3/modules/calib3d/src/
Dfisheye.cpp1185 solve(J, ex.reshape(1, (int)ex.total()), param_innov, DECOMP_SVD + DECOMP_NORMAL); in ComputeExtrinsicRefine()
Ddls.cpp229 cv::solve(H, A, A, cv::DECOMP_NORMAL); in build_coeff_matrix()