mirror of
https://github.com/opencv/opencv.git
synced 2025-06-07 01:13:28 +08:00
21 lines
609 B
C++
21 lines
609 B
C++
// This file is part of OpenCV project.
|
|
// It is subject to the license terms in the LICENSE file found in the top-level directory
|
|
// of this distribution and at http://opencv.org/license.html
|
|
|
|
#ifndef POLYNOM_SOLVER_H
|
|
#define POLYNOM_SOLVER_H
|
|
|
|
namespace cv {
|
|
|
|
int solve_deg2(double a, double b, double c, double & x1, double & x2);
|
|
|
|
int solve_deg3(double a, double b, double c, double d,
|
|
double & x0, double & x1, double & x2);
|
|
|
|
int solve_deg4(double a, double b, double c, double d, double e,
|
|
double & x0, double & x1, double & x2, double & x3);
|
|
|
|
}
|
|
|
|
#endif // POLYNOM_SOLVER_H
|