Linear Methods for Image Interpolation
lprefilt.h
Go to the documentation of this file.
00001 
00016 #ifndef _LPREFILT_H_
00017 #define _LPREFILT_H_
00018 
00019 #include "linterp.h"
00020 
00021 void PrefilterImage(float *Data, int Width, int Height, int NumChannels,
00022     const float *alpha, int NumFilterPairs, float ConstantFactor,
00023     boundaryhandling Boundary);
00024 
00025 void PsfConvCoeff(float *Coeff, int NumCoeffs,
00026     float (*Psf)(float, const void*), const void *PsfParams,
00027     float (*Kernel)(float), float KernelRadius, int KernelNormalize);
00028 
00029 int PsfPreFilter(float *Data, int Width, int Height, int NumChannels,
00030     const float *Coeff, int NumCoeffs, boundaryhandling Boundary);
00031 
00032 #endif /* _LPREFILT_H_ */
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines