Home
last modified time | relevance | path

Searched refs:CV_CHOLESKY (Results 1 – 3 of 3) sorted by relevance

/external/opencv3/modules/core/test/
Dtest_math.cpp1530 method = CV_CHOLESKY; in get_test_array_types_and_sizes()
1560 if( method == CV_CHOLESKY ) in prepare_test_case()
1626 ((method == CV_LU || method == CV_CHOLESKY) && (result == 0 || ratio < threshold)) || in prepare_to_validation()
/external/opencv3/modules/core/src/
Dlapack.cpp1538 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/include/opencv2/core/
Dcore_c.h1344 #define CV_CHOLESKY 3 macro