xref: /OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/algos/interpolation.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1 
2 #ifndef __INTERPOLATION_H__
3 #define __INTERPOLATION_H__
4 
5 void interpolation(const float *x, const float *y, int Num, float x0, float*y0);
6 void interpolation(const float *x, const unsigned short *y, int Num, float x0, unsigned short *y0);
7 int interpolation(unsigned char *x, bool *y, int xNum, unsigned char x0, bool *y0);
8 
9 #endif
10