Linear Methods for Image Interpolation
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros
lprefilt.h
Go to the documentation of this file.
1 
16 #ifndef _LPREFILT_H_
17 #define _LPREFILT_H_
18 
19 #include "linterp.h"
20 
21 void PrefilterImage(float *Data, int Width, int Height, int NumChannels,
22  const float *alpha, int NumFilterPairs, float ConstantFactor,
23  boundaryhandling Boundary);
24 
25 void PsfConvCoeff(float *Coeff, int NumCoeffs,
26  float (*Psf)(float, const void*), const void *PsfParams,
27  float (*Kernel)(float), float KernelRadius, int KernelNormalize);
28 
29 int PsfPreFilter(float *Data, int Width, int Height, int NumChannels,
30  const float *Coeff, int NumCoeffs, boundaryhandling Boundary);
31 
32 #endif /* _LPREFILT_H_ */