Home
last modified time | relevance | path

Searched refs:DECOMP_CHOLESKY (Results 1 – 9 of 9) sorted by relevance

/external/opencv3/modules/core/include/opencv2/core/
Doperations.hpp74 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()
Dbase.hpp141 DECOMP_CHOLESKY = 3, enumerator
/external/opencv3/modules/core/src/
Dlapack.cpp842 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/
Dtest_hal_core.cpp179 solve(a0, b, x0, (nfunc == HAL_LU ? DECOMP_LU : DECOMP_CHOLESKY)); in TEST()
Dtest_math.cpp2573 cv::invert(b, c, cv::DECOMP_CHOLESKY); //std::cout << b*c << std::endl; in TEST()
/external/opencv3/modules/cudaoptflow/src/
Dfarneback.cpp232 Mat_<double> invG = G.inv(DECOMP_CHOLESKY); in prepareGaussian()
/external/opencv3/modules/core/misc/java/test/
DMatTest.java474 dst = src.inv(Core.DECOMP_CHOLESKY); in testInvInt()
/external/opencv3/modules/video/src/
Doptflowgf.cpp107 Mat_<double> invG = G.inv(DECOMP_CHOLESKY); in FarnebackPrepareGaussian()
/external/opencv3/modules/java/src/
Dcore+Core.java112 DECOMP_CHOLESKY = 3, field in Core