Searched refs:solvePoly (Results 1 – 6 of 6) sorted by relevance
/external/opencv3/modules/core/include/opencv2/ |
D | core.hpp | 1793 CV_EXPORTS_W double solvePoly(InputArray coeffs, OutputArray roots, int maxIters = 300);
|
/external/opencv3/modules/java/src/ |
D | core+Core.java | 1870 public static double solvePoly(Mat coeffs, Mat roots, int maxIters) in solvePoly() method in Core 1879 public static double solvePoly(Mat coeffs, Mat roots) in solvePoly() method in Core
|
D | core.cpp | 3515 double _retval_ = cv::solvePoly( coeffs, roots, (int)maxIters ); in Java_org_opencv_core_Core_solvePoly_10() 3537 double _retval_ = cv::solvePoly( coeffs, roots ); in Java_org_opencv_core_Core_solvePoly_11()
|
/external/opencv3/modules/core/misc/java/test/ |
D | CoreTest.java | 1780 assertEquals(0.0, Core.solvePoly(coeffs, roots)); in testSolvePolyMatMat() 1798 assertEquals(10.198039027185569, Core.solvePoly(coeffs, roots, 1)); in testSolvePolyMatMatInt()
|
/external/opencv3/modules/core/src/ |
D | mathfuncs.cpp | 2037 double cv::solvePoly( InputArray _coeffs0, OutputArray _roots0, int maxIters ) in solvePoly() function in cv 2132 cv::solvePoly(_a, _r, maxiter); in cvSolvePoly()
|
/external/opencv3/modules/calib3d/src/ |
D | five-point.cpp | 104 solvePoly(coeffs, roots); in runKernel()
|