18 #ifndef sitkRecursiveGaussianImageFilter_h
19 #define sitkRecursiveGaussianImageFilter_h
65 typedef typelist::Append<BasicPixelIDTypeList, VectorPixelIDTypeList>::Type
PixelIDTypeList;
72 SITK_RETURN_SELF_TYPE_HEADER
SetSigma (
double Sigma ) { this->m_Sigma = Sigma;
return *
this; }
77 double GetSigma()
const {
return this->m_Sigma; }
98 SITK_RETURN_SELF_TYPE_HEADER
SetNormalizeAcrossScale (
bool NormalizeAcrossScale ) { this->m_NormalizeAcrossScale = NormalizeAcrossScale;
return *
this; }
119 SITK_RETURN_SELF_TYPE_HEADER
SetOrder (
OrderType Order ) { this->m_Order = Order;
return *
this; }
134 SITK_RETURN_SELF_TYPE_HEADER
SetDirection (
unsigned int Direction ) { this->m_Direction = Direction;
return *
this; }
140 std::string
GetName()
const {
return std::string (
"RecursiveGaussianImageFilter"); }
143 std::string ToString()
const;
157 typedef Image (Self::*MemberFunctionType)(
const Image& image1 );
158 template <
class TImageType>
Image ExecuteInternal (
const Image& image1 );
std::string GetName() const
Self & NormalizeAcrossScaleOn()
#define SITKBasicFilters_EXPORT
nsstd::auto_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory
Self & SetDirection(unsigned int Direction)
RecursiveGaussianImageFilter Self
typelist::Append< BasicPixelIDTypeList, VectorPixelIDTypeList >::Type PixelIDTypeList
unsigned int GetDirection() const
Self & SetNormalizeAcrossScale(bool NormalizeAcrossScale)
Self & NormalizeAcrossScaleOff()
Image RecursiveGaussian(const Image &image1, double sigma=1.0, bool normalizeAcrossScale=false, RecursiveGaussianImageFilter::OrderType order=itk::simple::RecursiveGaussianImageFilter::ZeroOrder, unsigned int direction=0u)
Base class for computing IIR convolution with an approximation of a Gaussian kernel.
Self & SetSigma(double Sigma)
The Image class for SimpleITK.
bool GetNormalizeAcrossScale() const
Base class for computing IIR convolution with an approximation of a Gaussian kernel.
bool m_NormalizeAcrossScale
OrderType GetOrder() const
The base interface for SimpleITK filters that take one input image.
Self & SetOrder(OrderType Order)