#include "Image/LowPass.H"
#include "Image/Convolutions.H"
#include "Image/Image.H"
#include "Image/Kernels.H"
#include "Image/Pixels.H"
#include "rutz/trace.h"
#include "inst/Image/LowPass.I"
Go to the source code of this file.
Functions | |
template<> | |
Image< promote_trait< PixRGB < float >, float >::TP > | lowPass3x (const Image< PixRGB< float > > &src) |
template<class T > | |
Image< typename promote_trait < T, float >::TP > | lowPass3x (const Image< T > &src) |
template<> | |
Image< promote_trait< PixRGB < float >, float >::TP > | lowPass3y (const Image< PixRGB< float > > &src) |
template<class T > | |
Image< typename promote_trait < T, float >::TP > | lowPass3y (const Image< T > &src) |
template<class T > | |
Image< typename promote_trait < T, float >::TP > | lowPass5x (const Image< T > &src) |
template<class T > | |
Image< typename promote_trait < T, float >::TP > | lowPass5y (const Image< T > &src) |
template<class T > | |
Image< typename promote_trait < T, float >::TP > | lowPass5xDecX (const Image< T > &src, const int factor) |
template<class T > | |
Image< typename promote_trait < T, float >::TP > | lowPass5yDecY (const Image< T > &src, const int factor) |
template<class T > | |
Image< typename promote_trait < T, float >::TP > | lowPass9x (const Image< T > &src) |
template<class T > | |
Image< typename promote_trait < T, float >::TP > | lowPass9y (const Image< T > &src) |
template<class T > | |
Image< typename promote_trait < T, float >::TP > | lowPass3 (const Image< T > &src, const bool go_x, const bool go_y) |
template<class T > | |
Image< typename promote_trait < T, float >::TP > | lowPass5 (const Image< T > &src, const bool go_x, const bool go_y) |
template<class T > | |
Image< typename promote_trait < T, float >::TP > | lowPass9 (const Image< T > &src, const bool go_x, const bool go_y) |
template<class T > | |
Image< typename promote_trait < T, float >::TP > | lowPass (const int N, const Image< T > &src, const bool go_x=true, const bool go_y=true) |
template<class T > | |
Image< typename promote_trait < T, float >::TP > | lowPassX (const int N, const Image< T > &src) |
template<class T > | |
Image< typename promote_trait < T, float >::TP > | lowPassY (const int N, const Image< T > &src) |
template<class T > | |
Image< T > | median3x (const Image< T > &in) |
template<class T > | |
Image< T > | median3y (const Image< T > &in) |
template<class T > | |
Image< T > | median3 (const Image< T > &in, bool go_x, bool go_y) |
template<class T > | |
Image< typename promote_trait < T, float >::TP > | convGauss (const Image< T > &src, const float sigmaX, const float sigmaY, const float threshperc) |
template Image< promote_trait < double, float >::TP > | lowPass3 (const Image< double > &src, const bool, const bool) |
template Image< promote_trait < double, float >::TP > | lowPass5 (const Image< double > &src, const bool, const bool) |
template Image< promote_trait < double, float >::TP > | lowPass3x (const Image< double > &src) |
template Image< promote_trait < double, float >::TP > | lowPass3y (const Image< double > &src) |
template Image< promote_trait < double, float >::TP > | lowPass5x (const Image< double > &src) |
template Image< promote_trait < double, float >::TP > | lowPass5y (const Image< double > &src) |
low-pass filtering and smoothing functions
Definition in file LowPass.C.