Go to the documentation of this file.
18 #ifndef sitkGradientMagnitudeRecursiveGaussianImageFilter_h
19 #define sitkGradientMagnitudeRecursiveGaussianImageFilter_h
60 SITK_RETURN_SELF_TYPE_HEADER
SetSigma (
double Sigma ) { this->m_Sigma = Sigma;
return *
this; }
65 double GetSigma()
const {
return this->m_Sigma; }\
70 SITK_RETURN_SELF_TYPE_HEADER
SetNormalizeAcrossScale (
bool NormalizeAcrossScale ) { this->m_NormalizeAcrossScale = NormalizeAcrossScale;
return *
this; }
82 std::string
GetName()
const {
return std::string (
"GradientMagnitudeRecursiveGaussianImageFilter"); }
85 std::string ToString()
const;
99 template <
class TImageType>
Image ExecuteInternal (
const Image& image1 );
111 bool m_NormalizeAcrossScale{
false};
114 bool m_InPlace{
false};
The Image class for SimpleITK.
BasicPixelIDTypeList PixelIDTypeList
bool GetNormalizeAcrossScale() const
std::string GetName() const
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
Self & NormalizeAcrossScaleOff()
Self & SetNormalizeAcrossScale(bool NormalizeAcrossScale)
#define SITKBasicFilters_EXPORT
Computes the Magnitude of the Gradient of an image by convolution with the first derivative of a Gaus...
Image GradientMagnitudeRecursiveGaussian(Image &&image1, double sigma=1.0, bool normalizeAcrossScale=false)
Computes the Magnitude of the Gradient of an image by convolution with the first derivative of a Gaus...
Self & SetSigma(double Sigma)
Image(Self::*)(const Image &image1) MemberFunctionType
Self & NormalizeAcrossScaleOn()
The base interface for SimpleITK filters that take one input image.
std::unique_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory