A Survey of Gaussian Convolution Algorithms
gaussian_conv_am.h
Go to the documentation of this file.
1 
37 #ifndef _GAUSSIAN_CONV_AM_H_
38 #define _GAUSSIAN_CONV_AM_H_
39 
40 #include "num.h"
41 
42 void am_gaussian_conv(num *dest, const num *src, long N, long stride,
43  double sigma, int K, num tol, int use_adjusted_q);
44 
45 void am_gaussian_conv_image(num *dest, const num *src,
46  int width, int height, int num_channels,
47  num sigma, int K, num tol, int use_adjusted_q);
48 
50 #endif /* _GAUSSIAN_CONV_AM_H_ */