18 #ifndef sitkLaplacianRecursiveGaussianImageFilter_h
19 #define sitkLaplacianRecursiveGaussianImageFilter_h
61 SITK_RETURN_SELF_TYPE_HEADER
SetSigma (
double Sigma ) { this->m_Sigma = Sigma;
return *
this; }
66 double GetSigma()
const {
return this->m_Sigma; }
71 SITK_RETURN_SELF_TYPE_HEADER
SetNormalizeAcrossScale (
bool NormalizeAcrossScale ) { this->m_NormalizeAcrossScale = NormalizeAcrossScale;
return *
this; }
82 std::string
GetName()
const {
return std::string (
"LaplacianRecursiveGaussianImageFilter"); }
85 std::string ToString()
const;
93 Image Execute (
const Image& image1,
double sigma,
bool normalizeAcrossScale );
99 typedef Image (Self::*MemberFunctionType)(
const Image& image1 );
100 template <
class TImageType>
Image ExecuteInternal (
const Image& image1 );
LaplacianRecursiveGaussianImageFilter Self
#define SITKBasicFilters_EXPORT
Computes the Laplacian of Gaussian (LoG) of an image.
typelist::MakeTypeList< BasicPixelID< int8_t >, BasicPixelID< uint8_t >, BasicPixelID< int16_t >, BasicPixelID< uint16_t >, BasicPixelID< int32_t >, BasicPixelID< uint32_t >, BasicPixelID< float >, BasicPixelID< double > >::Type BasicPixelIDTypeList
std::string GetName() const
bool GetNormalizeAcrossScale() const
bool m_NormalizeAcrossScale
Self & NormalizeAcrossScaleOff()
BasicPixelIDTypeList PixelIDTypeList
nsstd::auto_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory
The Image class for SimpleITK.
Image LaplacianRecursiveGaussian(const Image &image1, double sigma=1.0, bool normalizeAcrossScale=false)
Computes the Laplacian of Gaussian (LoG) of an image.
Self & NormalizeAcrossScaleOn()
Self & SetNormalizeAcrossScale(bool NormalizeAcrossScale)
The base interface for SimpleITK filters that take one input image.
Self & SetSigma(double Sigma)