19 #ifndef itkSmoothingRecursiveYvvGaussianImageFilter_h
20 #define itkSmoothingRecursiveYvvGaussianImageFilter_h
46 template<
typename TInputImage,
47 typename TOutputImage = TInputImage >
78 static constexpr
unsigned int ImageDimension = TInputImage::ImageDimension;
82 itkGetStaticConstMacro(ImageDimension) >;
89 using RealImageType =
typename InputImageType::template Rebind< InternalRealType >::Type;
135 void SetNormalizeAcrossScale(
bool normalizeInScaleSpace);
136 itkGetConstMacro(NormalizeAcrossScale,
bool);
141 bool CanRunInPlace(
void)
const override;
143 #ifdef ITK_USE_CONCEPT_CHECKING
153 void PrintSelf(std::ostream & os,
Indent indent)
const override;
157 void GenerateData(
void)
override;
167 void EnlargeOutputRequestedRegion(
DataObject *output) override;
175 bool m_NormalizeAcrossScale;
182 #ifndef ITK_MANUAL_INSTANTIATION
183 #include "itkSmoothingRecursiveYvvGaussianImageFilter.hxx"
1D recursive Gaussian blur based on Young-Van Vliet's algorithm, implemented for CPU.
typename OutputImageType::Pointer OutputImagePointer
typename NumericTraits< PixelType >::FloatType RealType
Define numeric traits for std::vector.
The base class for all process objects (source, filters, mappers) in the Insight data processing pipe...
typename TInputImage::PixelType PixelType
typename NumericTraits< PixelType >::FloatType InternalRealType
Base class for all process objects that output image data.
typename InternalGaussianFilterType::Pointer InternalGaussianFilterPointer
TInputImage InputImageType
typename FirstGaussianFilterType::Pointer FirstGaussianFilterPointer
RecursiveLineYvvGaussianImageFilter< RealImageType, RealImageType > InternalGaussianFilterType
typename InputImageType::template Rebind< InternalRealType >::Type RealImageType
CastImageFilter< RealImageType, OutputImageType > CastingFilterType
Recursive Gaussian blurring filter based on Young-Van Vliet's algorithm, implemented for CPU...
TOutputImage OutputImageType
RecursiveLineYvvGaussianImageFilter< InputImageType, RealImageType > FirstGaussianFilterType
~SmoothingRecursiveYvvGaussianImageFilter() override
unsigned int ThreadIdType
typename CastingFilterType::Pointer CastingFilterPointer
typename NumericTraits< PixelType >::FloatType ScalarRealType
Control indentation during Print() invocation.
Base class for filters that take an image as input and overwrite that image as the output...
#define itkConceptMacro(name, concept)
Base class for all data objects in ITK.
Casts input pixels to output pixel type.