Searched refs:DECOMP_CHOLESKY (Results 1 – 9 of 9) sorted by relevance
/external/opencv3/modules/core/include/opencv2/core/ |
D | operations.hpp | 74 if( method == DECOMP_CHOLESKY ) in operator ()() 128 if( method == DECOMP_CHOLESKY ) in operator ()() 197 if( method == DECOMP_LU || method == DECOMP_CHOLESKY ) in inv() 213 if( method == DECOMP_LU || method == DECOMP_CHOLESKY ) in solve()
|
D | base.hpp | 141 DECOMP_CHOLESKY = 3, enumerator
|
/external/opencv3/modules/core/src/ |
D | lapack.cpp | 842 CV_Assert( method == DECOMP_LU || method == DECOMP_CHOLESKY ); in invert() 1033 else if( method == DECOMP_CHOLESKY && type == CV_32F ) 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() 1272 else if( method == DECOMP_CHOLESKY ) in solve() 1538 return cv::invert( src, dst, method == CV_CHOLESKY ? cv::DECOMP_CHOLESKY : in cvInvert() 1552 return cv::solve( A, b, x, (method == CV_CHOLESKY ? cv::DECOMP_CHOLESKY : 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 | 2573 cv::invert(b, c, cv::DECOMP_CHOLESKY); //std::cout << b*c << std::endl; in TEST()
|
/external/opencv3/modules/cudaoptflow/src/ |
D | farneback.cpp | 232 Mat_<double> invG = G.inv(DECOMP_CHOLESKY); in prepareGaussian()
|
/external/opencv3/modules/core/misc/java/test/ |
D | MatTest.java | 474 dst = src.inv(Core.DECOMP_CHOLESKY); in testInvInt()
|
/external/opencv3/modules/video/src/ |
D | optflowgf.cpp | 107 Mat_<double> invG = G.inv(DECOMP_CHOLESKY); in FarnebackPrepareGaussian()
|
/external/opencv3/modules/java/src/ |
D | core+Core.java | 112 DECOMP_CHOLESKY = 3, field in Core
|