A Survey of Gaussian Convolution Algorithms
gaussian_conv_box.h
Go to the documentation of this file.
1 
52 #ifndef _GAUSSIAN_CONV_BOX_H_
53 #define _GAUSSIAN_CONV_BOX_H_
54 
55 #include "num.h"
56 
57 void box_gaussian_conv(num *dest, num *buffer, const num *src,
58  long N, long stride, num sigma, int K);
59 void box_gaussian_conv_image(num *dest, num *buffer, const num *src,
60  int width, int height, int num_channels, num sigma, int K);
61 
63 #endif /* _GAUSSIAN_CONV_BOX_H_ */