ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkGradientMagnitudeRecursiveGaussianImageFilter.h
Go to the documentation of this file.
1/*=========================================================================
2 *
3 * Copyright NumFOCUS
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * https://www.apache.org/licenses/LICENSE-2.0.txt
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 *=========================================================================*/
18#ifndef itkGradientMagnitudeRecursiveGaussianImageFilter_h
19#define itkGradientMagnitudeRecursiveGaussianImageFilter_h
20
22#include "itkImage.h"
23#include "itkPixelTraits.h"
25#include "itkSqrtImageFilter.h"
27
28namespace itk
29{
46// NOTE that the typename macro has to be used here in lieu
47// of "typename" because VC++ doesn't like the typename keyword
48// on the defaults of template parameters
49template <typename TInputImage, typename TOutputImage = TInputImage>
51 : public InPlaceImageFilter<TInputImage, TOutputImage>
52{
53public:
54 ITK_DISALLOW_COPY_AND_MOVE(GradientMagnitudeRecursiveGaussianImageFilter);
55
61
63 using InputImageType = TInputImage;
64 using PixelType = typename InputImageType::PixelType;
65
67 static constexpr unsigned int ImageDimension = TInputImage::ImageDimension;
68
70
74
75 using InternalRealType = float;
77
80
83
86
89
92
94
96 using OutputImagePointer = typename TOutputImage::Pointer;
97
99 using OutputImageType = TOutputImage;
100 using OutputPixelType = typename OutputImageType::PixelType;
101
106
108 itkNewMacro(Self);
109
111 itkOverrideGetNameOfClassMacro(GradientMagnitudeRecursiveGaussianImageFilter);
112
115 void
125 void
126 SetNormalizeAcrossScale(bool normalize);
127 itkGetConstMacro(NormalizeAcrossScale, bool);
128 itkBooleanMacro(NormalizeAcrossScale);
130 void
132
133 itkConceptMacro(InputHasNumericTraitsCheck, (Concept::HasNumericTraits<PixelType>));
134
135protected:
138 void
139 PrintSelf(std::ostream & os, Indent indent) const override;
140
142 void
143 GenerateData() override;
144
151 void
153
157 void
159
160private:
163
168
171};
172} // end namespace itk
173
174#ifndef ITK_MANUAL_INSTANTIATION
175# include "itkGradientMagnitudeRecursiveGaussianImageFilter.hxx"
176#endif
177
178#endif
Implements pixel-wise generic operation of two images, or of an image and a constant.
Base class for all data objects in ITK.
void SetNumberOfWorkUnits(ThreadIdType nb) override
void PrintSelf(std::ostream &os, Indent indent) const override
RecursiveGaussianImageFilter< RealImageType, RealImageType > GaussianFilterType
void EnlargeOutputRequestedRegion(DataObject *output) override
BinaryGeneratorImageFilter< RealImageType, RealImageType, RealImageType > SqrSpacingFilterType
RecursiveGaussianImageFilter< InputImageType, RealImageType > DerivativeFilterType
Templated n-dimensional image class.
Definition itkImage.h:89
Control indentation during Print() invocation.
Definition itkIndent.h:50
Base class for computing IIR convolution with an approximation of a Gaussian kernel.
Implements transparent reference counting.
Computes the square root of each pixel.
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
unsigned int ThreadIdType