ITK  5.4.0
Insight Toolkit
itkRecursiveMultiResolutionPyramidImageFilter.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 itkRecursiveMultiResolutionPyramidImageFilter_h
19 #define itkRecursiveMultiResolutionPyramidImageFilter_h
20 
22 #include "vnl/vnl_matrix.h"
23 
24 namespace itk
25 {
63 template <typename TInputImage, typename TOutputImage>
65  : public MultiResolutionPyramidImageFilter<TInputImage, TOutputImage>
66 {
67 public:
68  ITK_DISALLOW_COPY_AND_MOVE(RecursiveMultiResolutionPyramidImageFilter);
69 
75 
77  itkNewMacro(Self);
78 
80  itkOverrideGetNameOfClassMacro(RecursiveMultiResolutionPyramidImageFilter);
81 
83  static constexpr unsigned int ImageDimension = Superclass::ImageDimension;
84 
86  using typename Superclass::InputImageType;
87  using typename Superclass::OutputImageType;
88  using typename Superclass::InputImagePointer;
89  using typename Superclass::OutputImagePointer;
90  using typename Superclass::InputImageConstPointer;
91 
97  void
98  GenerateOutputRequestedRegion(DataObject * ptr) override;
107  void
108  GenerateInputRequestedRegion() override;
109 
110 protected:
112  ~RecursiveMultiResolutionPyramidImageFilter() override = default;
113 
115  void
116  GenerateData() override;
117 };
118 } // namespace itk
119 
120 #ifndef ITK_MANUAL_INSTANTIATION
121 # include "itkRecursiveMultiResolutionPyramidImageFilter.hxx"
122 #endif
123 
124 #endif
itkMultiResolutionPyramidImageFilter.h
itk::SmartPointer< Self >
itk::RecursiveMultiResolutionPyramidImageFilter
Creates a multi-resolution pyramid using a recursive implementation.
Definition: itkRecursiveMultiResolutionPyramidImageFilter.h:64
itk::ImageSource
Base class for all process objects that output image data.
Definition: itkImageSource.h:67
itk::MultiResolutionPyramidImageFilter
Framework for creating images in a multi-resolution pyramid.
Definition: itkMultiResolutionPyramidImageFilter.h:109
itk
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Definition: itkAnnulusOperator.h:24
itk::ProcessObject
The base class for all process objects (source, filters, mappers) in the Insight data processing pipe...
Definition: itkProcessObject.h:139
itk::DataObject
Base class for all data objects in ITK.
Definition: itkDataObject.h:293