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

Apply exponential filter. More...

#include <vil/vil_image_view.h>

Go to the source code of this file.

Functions

template<class srcT , class destT , class accumT >
void vil_exp_filter_1d (const srcT *src, vcl_ptrdiff_t sstep, destT *dest, vcl_ptrdiff_t dstep, int n, accumT k)
 Apply exponential filter to 1D data.
template<class srcT , class destT , class accumT >
void vil_exp_filter_i (const vil_image_view< srcT > &src_im, vil_image_view< destT > &dest_im, accumT k)
 Apply exponential filter along i to src_im to produce dest_im.
template<class srcT , class destT , class accumT >
void vil_exp_filter_j (const vil_image_view< srcT > &src_im, vil_image_view< destT > &dest_im, accumT k)
 Apply exponential filter along j to src_im to produce dest_im.

Detailed Description

Apply exponential filter.

Author:
Tim Cootes

Definition in file vil_exp_filter_1d.h.


Function Documentation

template<class srcT , class destT , class accumT >
void vil_exp_filter_1d ( const srcT *  src,
vcl_ptrdiff_t  sstep,
destT *  dest,
vcl_ptrdiff_t  dstep,
int  n,
accumT  k 
) [inline]

Apply exponential filter to 1D data.

Apply filter to n values src[i*sstep] to produce output dest[i*dstep] Symmetric exponential filter of the form exp(c*|x|) applied. c=log(k) Uses fast recursive implementation.

Definition at line 15 of file vil_exp_filter_1d.h.

template<class srcT , class destT , class accumT >
void vil_exp_filter_i ( const vil_image_view< srcT > &  src_im,
vil_image_view< destT > &  dest_im,
accumT  k 
) [inline]

Apply exponential filter along i to src_im to produce dest_im.

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

Definition at line 52 of file vil_exp_filter_1d.h.

template<class srcT , class destT , class accumT >
void vil_exp_filter_j ( const vil_image_view< srcT > &  src_im,
vil_image_view< destT > &  dest_im,
accumT  k 
) [inline]

Apply exponential filter along 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 77 of file vil_exp_filter_1d.h.