Searched refs:DECOMP_LU (Results 1 – 14 of 14) sorted by relevance
/external/opencv3/modules/core/src/ |
D | lapack.cpp | 842 CV_Assert( method == DECOMP_LU || method == DECOMP_CHOLESKY ); in invert() 1029 if( method == DECOMP_LU && type == CV_32F ) in invert() 1031 else if( method == DECOMP_LU && type == CV_64F ) in invert() 1060 CV_Assert( (method != DECOMP_LU && method != DECOMP_CHOLESKY) || in solve() 1064 if( (method == DECOMP_LU || method == DECOMP_CHOLESKY) && !is_normal && in solve() 1248 if( method == DECOMP_LU || method == DECOMP_CHOLESKY ) in solve() 1254 if( method == DECOMP_LU || method == DECOMP_CHOLESKY ) in solve() 1265 if( method == DECOMP_LU ) in solve() 1540 method == CV_SVD_SYM ? cv::DECOMP_EIG : cv::DECOMP_LU ); in cvInvert() 1555 A.rows > A.cols ? cv::DECOMP_QR : cv::DECOMP_LU) + (is_normal ? cv::DECOMP_NORMAL : 0) ); in cvSolve()
|
/external/opencv3/modules/core/test/ |
D | test_hal_core.cpp | 179 solve(a0, b, x0, (nfunc == HAL_LU ? DECOMP_LU : DECOMP_CHOLESKY)); in TEST()
|
D | test_math.cpp | 2569 cv::invert(b, c, cv::DECOMP_LU); //std::cout << b*c << std::endl; in TEST()
|
/external/opencv3/modules/videostab/src/ |
D | global_motion.cpp | 168 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/core/include/opencv2/core/ |
D | operations.hpp | 197 if( method == DECOMP_LU || method == DECOMP_CHOLESKY ) in inv() 213 if( method == DECOMP_LU || method == DECOMP_CHOLESKY ) in solve()
|
D | mat.hpp | 1160 MatExpr inv(int method=DECOMP_LU) const; 2205 UMat inv(int method=DECOMP_LU) const; 3270 MatExpr inv(int method = DECOMP_LU) const;
|
D | base.hpp | 133 DECOMP_LU = 0, enumerator
|
D | matx.hpp | 159 Matx<_Tp, n, m> inv(int method=DECOMP_LU, bool *p_is_ok = NULL) const; 162 template<int l> Matx<_Tp, n, l> solve(const Matx<_Tp, m, l>& rhs, int flags=DECOMP_LU) const;
|
/external/opencv3/modules/shape/src/ |
D | tps_trans.cpp | 271 solve(matL, matB, tpsParameters, DECOMP_LU); in estimateTransformation()
|
/external/opencv3/modules/core/include/opencv2/ |
D | core.hpp | 1709 CV_EXPORTS_W double invert(InputArray src, OutputArray dst, int flags = DECOMP_LU); 1734 OutputArray dst, int flags = DECOMP_LU);
|
/external/opencv3/modules/imgproc/src/ |
D | undistort.cpp | 103 Mat_<double> iR = (Ar.colRange(0,3)*R).inv(DECOMP_LU); in initUndistortRectifyMap()
|
/external/opencv3/modules/features2d/src/kaze/ |
D | KAZEFeatures.cpp | 463 solve(A, b, dst, DECOMP_LU); in Do_Subpixel_Refinement()
|
D | AKAZEFeatures.cpp | 436 solve(A, b, dst, DECOMP_LU); in Do_Subpixel_Refinement()
|
/external/opencv3/modules/java/src/ |
D | core+Core.java | 109 DECOMP_LU = 0, field in Core
|