2D Convolution More...
Go to the source code of this file.
Functions | |
template<class srcT , class destT , class kernelT , class accumT > | |
void | vil_convolve_2d (const vil_image_view< srcT > &src_im, vil_image_view< destT > &dest_im, const vil_image_view< kernelT > &kernel, accumT ac) |
Convolve kernel with srcT. |
2D Convolution
Definition in file vil_convolve_2d.h.
void vil_convolve_2d | ( | const vil_image_view< srcT > & | src_im, |
vil_image_view< destT > & | dest_im, | ||
const vil_image_view< kernelT > & | kernel, | ||
accumT | ac | ||
) | [inline] |
Convolve kernel with srcT.
dest is resized to (1+src_im.ni()-kernel.ni())x(1+src_im.nj()-kernel.nj()) (a one plane image). On exit dest(x,y) = sum_ij src_im(x-i,y-j)*kernel(i,j)
Definition at line 20 of file vil_convolve_2d.h.