18#ifndef sitkSmoothingRecursiveGaussianImageFilter_h
19#define sitkSmoothingRecursiveGaussianImageFilter_h
59 using PixelIDTypeList = typelist2::append<BasicPixelIDTypeList, VectorPixelIDTypeList>::type;
71 { this->
m_Sigma = std::move(Sigma); }
109 std::string
GetName()
const {
return std::string(
"SmoothingRecursiveGaussianImageFilter"); }
130 std::vector<double>
m_Sigma{ std::vector<double>(3,1.0) };
155 Image&& image1, std::vector<double> sigma = std::vector<double>(3,1.0),
bool normalizeAcrossScale =
false
161 const Image &image1, std::vector<double> sigma = std::vector<double>(3,1.0),
bool normalizeAcrossScale =
false
The Image class for SimpleITK.
std::string ToString() const
bool m_NormalizeAcrossScale
Image(Self::*)(const Image &image1) MemberFunctionType
Image ExecuteInternal(const Image &image1)
void SetSigma(std::vector< double > Sigma)
bool GetNormalizeAcrossScale() const
SmoothingRecursiveGaussianImageFilter Self
Image Execute(const Image &image1)
std::string GetName() const
std::vector< double > GetSigma() const
void SetNormalizeAcrossScale(bool NormalizeAcrossScale)
typelist2::append< BasicPixelIDTypeList, VectorPixelIDTypeList >::type PixelIDTypeList
virtual ~SmoothingRecursiveGaussianImageFilter()
void NormalizeAcrossScaleOff()
void SetSigma(double value)
SmoothingRecursiveGaussianImageFilter()
void NormalizeAcrossScaleOn()
Image Execute(Image &&image1)
std::vector< double > m_Sigma
static const detail::MemberFunctionFactory< MemberFunctionType > & GetMemberFunctionFactory()
A class used to instantiate and generate function object to templated member functions.
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