Lens distortion correction division model 1p
 All Classes Files Functions Variables
ami_pol.h
1 /*
2  Copyright (c) 2010-2013, AMI RESEARCH GROUP <lalvarez@dis.ulpgc.es>
3  License : CC Creative Commons "Attribution-NonCommercial-ShareAlike"
4  see http://creativecommons.org/licenses/by-nc-sa/3.0/es/deed.en
5  */
6 
7 
8 #ifndef _AMI_POL_H_
9 #define _AMI_POL_H_
10 
11 #include <stdlib.h>
12 #include <math.h>
13 
14 long double ami_horner(long double *pol,int degree,long double x,
15  long double *fp);
16 long double ami_root_bisection(long double *pol,int degree,long double a,
17  long double b,long double TOL);
18 int ami_polynomial_root(double *pol, int degree, double *root_r,
19  double *root_i);
20 
21 #endif