Home
last modified time | relevance | path

Searched refs:solvePoly (Results 1 – 6 of 6) sorted by relevance

/external/opencv3/modules/core/include/opencv2/
Dcore.hpp1793 CV_EXPORTS_W double solvePoly(InputArray coeffs, OutputArray roots, int maxIters = 300);
/external/opencv3/modules/java/src/
Dcore+Core.java1870 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
Dcore.cpp3515 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/
DCoreTest.java1780 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/
Dmathfuncs.cpp2037 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/
Dfive-point.cpp104 solvePoly(coeffs, roots); in runKernel()