Functions
core/vil/algo/vil_exp_filter_2d.h File Reference

Apply exponential filter in two dimensions. More...

#include <vil/algo/vil_exp_filter_1d.h>

Go to the source code of this file.

Functions

template<class srcT , class destT , class accumT >
void vil_exp_filter_2d (const vil_image_view< srcT > &src_im, vil_image_view< destT > &dest_im, accumT ki, accumT kj)
 Apply exponential filter along i and j to src_im to produce dest_im.

Detailed Description

Apply exponential filter in two dimensions.

Author:
Tim Cootes

Definition in file vil_exp_filter_2d.h.


Function Documentation

template<class srcT , class destT , class accumT >
void vil_exp_filter_2d ( const vil_image_view< srcT > &  src_im,
vil_image_view< destT > &  dest_im,
accumT  ki,
accumT  kj 
) [inline]

Apply exponential filter along i and j to src_im to produce dest_im.

Symmetric exponential filter of the form exp(c*|j|) applied. c=log(k) Uses fast recursive implementation.

Definition at line 15 of file vil_exp_filter_2d.h.