18#ifndef sitkSmoothingRecursiveGaussianImageFilter_h
19#define sitkSmoothingRecursiveGaussianImageFilter_h
55 using PixelIDTypeList = typelist2::append<BasicPixelIDTypeList, VectorPixelIDTypeList>::type;
61 SITK_RETURN_SELF_TYPE_HEADER
SetSigma ( std::vector<double> Sigma ) { this->
m_Sigma = std::move(Sigma);
return *
this; }
64 SITK_RETURN_SELF_TYPE_HEADER
SetSigma(
double value ) { this->
m_Sigma = std::vector<double>(3, value);
return *
this; }
90 std::string
GetName()
const {
return std::string (
"SmoothingRecursiveGaussianImageFilter"); }
116 std::vector<double>
m_Sigma{std::vector<double>(3,1.0)};
The Image class for SimpleITK.
std::string ToString() const
bool m_NormalizeAcrossScale
Image(Self::*)(const Image &image1) MemberFunctionType
Image ExecuteInternal(const Image &image1)
Self & NormalizeAcrossScaleOn()
bool GetNormalizeAcrossScale() const
SmoothingRecursiveGaussianImageFilter Self
Image Execute(const Image &image1)
std::string GetName() const
std::vector< double > GetSigma() const
typelist2::append< BasicPixelIDTypeList, VectorPixelIDTypeList >::type PixelIDTypeList
virtual ~SmoothingRecursiveGaussianImageFilter()
Self & NormalizeAcrossScaleOff()
std::unique_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory
Self & SetSigma(double value)
SmoothingRecursiveGaussianImageFilter()
Image Execute(Image &&image1)
std::vector< double > m_Sigma
Self & SetNormalizeAcrossScale(bool NormalizeAcrossScale)
Self & SetSigma(std::vector< double > Sigma)
SITKBasicFilters_EXPORT Image SmoothingRecursiveGaussian(const Image &image1, double sigma, bool normalizeAcrossScale=false)
Computes the smoothing of an image by convolution with the Gaussian kernels implemented as IIR filter...
#define SITKBasicFilters_EXPORT