ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkFFTNormalizedCorrelationImageFilter.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 itkFFTNormalizedCorrelationImageFilter_h
19#define itkFFTNormalizedCorrelationImageFilter_h
20
22
23namespace itk
24{
97
98template <typename TInputImage, typename TOutputImage>
99class ITK_TEMPLATE_EXPORT FFTNormalizedCorrelationImageFilter
100 : public MaskedFFTNormalizedCorrelationImageFilter<TInputImage, TOutputImage>
101{
102public:
103 ITK_DISALLOW_COPY_AND_MOVE(FFTNormalizedCorrelationImageFilter);
104
110
112 itkNewMacro(Self);
113
115 itkOverrideGetNameOfClassMacro(FFTNormalizedCorrelationImageFilter);
116
119 static constexpr unsigned int ImageDimension = TOutputImage::ImageDimension;
120
122 using InputImageType = TInputImage;
123 using OutputImageType = TOutputImage;
124 using InputRegionType = typename InputImageType::RegionType;
125 using InputImagePointer = typename InputImageType::Pointer;
126 using InputImageConstPointer = typename InputImageType::ConstPointer;
127 using InputSizeType = typename InputImageType::SizeType;
128 using OutputImagePointer = typename OutputImageType::Pointer;
129 using OutputPixelType = typename OutputImageType::PixelType;
130
131protected:
133 {
134 Self::RemoveInput("MovingImageMask");
135 Self::RemoveInput("FixedImageMask");
136 }
138 void
139 PrintSelf(std::ostream & os, Indent indent) const override;
140
142 void
143 GenerateData() override;
144
145private:
146 // Member variables.
147};
148} // end namespace itk
149
150#ifndef ITK_MANUAL_INSTANTIATION
151# include "itkFFTNormalizedCorrelationImageFilter.hxx"
152#endif
153
154#endif
MaskedFFTNormalizedCorrelationImageFilter< TInputImage, TOutputImage > Superclass
~FFTNormalizedCorrelationImageFilter() override=default
void PrintSelf(std::ostream &os, Indent indent) const override
Control indentation during Print() invocation.
Definition itkIndent.h:50
virtual void RemoveInput(const DataObjectIdentifierType &key)
Remove an input.
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....