00001 #ifndef _GAUSSIAN_CONV_H_ 00002 #define _GAUSSIAN_CONV_H_ 00003 00004 void ClearKernelDictionary(void); 00005 00006 void GaussianConvolve(double *inArray, double *outArray, 00007 const double sigma, const double range, 00008 const int width, const int height); 00009 00010 #endif /* _GAUSSIAN_CONV_H_ */
1.2.18