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{
96template <typename TInputImage, typename TOutputImage>
97class ITK_TEMPLATE_EXPORT FFTNormalizedCorrelationImageFilter
98 : public MaskedFFTNormalizedCorrelationImageFilter<TInputImage, TOutputImage>
99{
100public:
101 ITK_DISALLOW_COPY_AND_MOVE(FFTNormalizedCorrelationImageFilter);
102
108
110 itkNewMacro(Self);
111
113 itkOverrideGetNameOfClassMacro(FFTNormalizedCorrelationImageFilter);
114
117 static constexpr unsigned int ImageDimension = TOutputImage::ImageDimension;
118
120 using InputImageType = TInputImage;
121 using OutputImageType = TOutputImage;
122 using InputRegionType = typename InputImageType::RegionType;
123 using InputImagePointer = typename InputImageType::Pointer;
124 using InputImageConstPointer = typename InputImageType::ConstPointer;
125 using InputSizeType = typename InputImageType::SizeType;
126 using OutputImagePointer = typename OutputImageType::Pointer;
127 using OutputPixelType = typename OutputImageType::PixelType;
128
129protected:
131 {
132 Self::RemoveInput("MovingImageMask");
133 Self::RemoveInput("FixedImageMask");
134 }
136 void
137 PrintSelf(std::ostream & os, Indent indent) const override;
138
140 void
141 GenerateData() override;
142
143private:
144 // Member variables.
145};
146} // end namespace itk
147
148#ifndef ITK_MANUAL_INSTANTIATION
149# include "itkFFTNormalizedCorrelationImageFilter.hxx"
150#endif
151
152#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....