18 #ifndef sitkSmoothingRecursiveGaussianImageFilter_h
19 #define sitkSmoothingRecursiveGaussianImageFilter_h
62 typedef typelist::Append<BasicPixelIDTypeList, VectorPixelIDTypeList>::Type
PixelIDTypeList;
69 SITK_RETURN_SELF_TYPE_HEADER
SetSigma (
double Sigma ) { this->m_Sigma = Sigma;
return *
this; }
73 double GetSigma()
const {
return this->m_Sigma; }
78 SITK_RETURN_SELF_TYPE_HEADER
SetNormalizeAcrossScale (
bool NormalizeAcrossScale ) { this->m_NormalizeAcrossScale = NormalizeAcrossScale;
return *
this; }
89 std::string
GetName()
const {
return std::string (
"SmoothingRecursiveGaussianImageFilter"); }
92 std::string ToString()
const;
100 Image Execute (
const Image& image1,
double sigma,
bool normalizeAcrossScale );
107 typedef Image (Self::*MemberFunctionType)(
const Image& image1 );
108 template <
class TImageType>
Image ExecuteInternal (
const Image& image1 );
Computes the smoothing of an image by convolution with the Gaussian kernels implemented as IIR filter...
#define SITKBasicFilters_EXPORT
typelist::Append< BasicPixelIDTypeList, VectorPixelIDTypeList >::Type PixelIDTypeList
Image SmoothingRecursiveGaussian(const Image &image1, double sigma=1.0, bool normalizeAcrossScale=false)
Computes the smoothing of an image by convolution with the Gaussian kernels implemented as IIR filter...
bool GetNormalizeAcrossScale() const
bool m_NormalizeAcrossScale
Self & NormalizeAcrossScaleOn()
Self & SetNormalizeAcrossScale(bool NormalizeAcrossScale)
Self & NormalizeAcrossScaleOff()
nsstd::auto_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory
Self & SetSigma(double Sigma)
SmoothingRecursiveGaussianImageFilter Self
std::string GetName() const
The main Image class for SimpleITK.
The base interface for SimpleITK filters that take one input image.