Home | History | Annotate | Download | only in src

Lines Matching refs:_roots

1908 int cv::solveCubic( InputArray _coeffs, OutputArray _roots )
1920 _roots.create(n0, 1, ctype, -1, true, _OutputArray::DEPTH_MASK_FLT);
1921 Mat roots = _roots.getMat();
2120 cv::Mat _coeffs = cv::cvarrToMat(coeffs), _roots = cv::cvarrToMat(roots), _roots0 = _roots;
2121 int nroots = cv::solveCubic(_coeffs, _roots);
2122 CV_Assert( _roots.data == _roots0.data ); // check that the array of roots was not reallocated