Linear Methods for Image Interpolation
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros
lkernels.h
Go to the documentation of this file.
1 
16 #ifndef _LKERNELS_H_
17 #define _LKERNELS_H_
18 
20 typedef const struct interpmethodstruct
21 {
23  const char *Name;
25  float (*Kernel)(float);
27  float KernelRadius;
33  const float *PrefilterAlpha;
36 } interpmethod;
37 
38 interpmethod *GetInterpMethod(const char *Name);
39 
40 float NearestNeighborKernel(float x);
41 
42 #endif /* _LKERNELS_H_ */