Home
last modified time | relevance | path

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

/external/opencv3/modules/core/src/
Dlapack.cpp842 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/
Dtest_hal_core.cpp179 solve(a0, b, x0, (nfunc == HAL_LU ? DECOMP_LU : DECOMP_CHOLESKY)); in TEST()
Dtest_math.cpp2569 cv::invert(b, c, cv::DECOMP_LU); //std::cout << b*c << std::endl; in TEST()
/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/core/include/opencv2/core/
Doperations.hpp197 if( method == DECOMP_LU || method == DECOMP_CHOLESKY ) in inv()
213 if( method == DECOMP_LU || method == DECOMP_CHOLESKY ) in solve()
Dmat.hpp1160 MatExpr inv(int method=DECOMP_LU) const;
2205 UMat inv(int method=DECOMP_LU) const;
3270 MatExpr inv(int method = DECOMP_LU) const;
Dbase.hpp133 DECOMP_LU = 0, enumerator
Dmatx.hpp159 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/
Dtps_trans.cpp271 solve(matL, matB, tpsParameters, DECOMP_LU); in estimateTransformation()
/external/opencv3/modules/core/include/opencv2/
Dcore.hpp1709 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/
Dundistort.cpp103 Mat_<double> iR = (Ar.colRange(0,3)*R).inv(DECOMP_LU); in initUndistortRectifyMap()
/external/opencv3/modules/features2d/src/kaze/
DKAZEFeatures.cpp463 solve(A, b, dst, DECOMP_LU); in Do_Subpixel_Refinement()
DAKAZEFeatures.cpp436 solve(A, b, dst, DECOMP_LU); in Do_Subpixel_Refinement()
/external/opencv3/modules/java/src/
Dcore+Core.java109 DECOMP_LU = 0, field in Core