opencv/modules/calib3d/src/polynom_solver.h
Alexander Shishkov c11551a510 added P3P method
added test for solvePnP
changed test for solvePnPRansac
fixed bug with mutex solvePnPRansac
2011-12-26 12:59:07 +00:00

13 lines
397 B
C

#ifndef POLYNOM_SOLVER_H
#define POLYNOM_SOLVER_H
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