Home
last modified time | relevance | path

Searched refs:solveCubic (Results 1 – 10 of 10) sorted by relevance

/external/opencv3/3rdparty/openexr/Imath/
DImathRoots.h87 template <class T> int solveCubic (T a, T b, T c, T d, T x[3]);
204 solveCubic (T a, T b, T c, T d, T x[3]) in solveCubic() function
/external/fonttools/Lib/fontTools/pens/
DpointInsidePen.py8 from fontTools.misc.bezierTools import solveQuadratic, solveCubic
125 solutions = sorted(solveCubic(ay, by, cy, dy - y))
/external/fonttools/Lib/fontTools/misc/
DbezierTools.py157 solutions = solveCubic(a[isHorizontal], b[isHorizontal], c[isHorizontal],
282 def solveCubic(a, b, c, d): function
/external/opencv3/modules/core/include/opencv2/
Dcore.hpp1783 CV_EXPORTS_W int solveCubic(InputArray coeffs, OutputArray roots);
/external/opencv3/modules/core/src/
Dmathfuncs.cpp1908 int cv::solveCubic( InputArray _coeffs, OutputArray _roots ) in solveCubic() function in cv
2121 int nroots = cv::solveCubic(_coeffs, _roots); in cvSolveCubic()
/external/opencv3/modules/calib3d/src/
Dfundam.cpp519 n = solveCubic( coeffs, roots ); in run7Point()
/external/opencv3/modules/core/test/
Dtest_math.cpp2296 nr2 = cv::solveCubic(cv::cvarrToMat(&amat),umat2); in run()
2298 nr2 = cv::solveCubic(cv::Mat_<float>(cv::cvarrToMat(&amat)), umat2); in run()
/external/opencv3/modules/java/src/
Dcore+Core.java1856 public static int solveCubic(Mat coeffs, Mat roots) in solveCubic() method in Core
Dcore.cpp3489 int _retval_ = cv::solveCubic( coeffs, roots ); in Java_org_opencv_core_Core_solveCubic_10()
/external/opencv3/modules/core/misc/java/test/
DCoreTest.java1714 assertEquals(3, Core.solveCubic(coeffs, dst)); in testSolveCubic()