ITK  5.2.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  * http://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 
81 
83  static constexpr unsigned int ImageDimension = Superclass::ImageDimension;
84 
86  using InputImageType = typename Superclass::InputImageType;
87  using OutputImageType = typename Superclass::OutputImageType;
88  using InputImagePointer = typename Superclass::InputImagePointer;
89  using OutputImagePointer = typename Superclass::OutputImagePointer;
90  using InputImageConstPointer = typename Superclass::InputImageConstPointer;
91 
97  void
98  GenerateOutputRequestedRegion(DataObject * ptr) override;
100 
107  void
108  GenerateInputRequestedRegion() override;
109 
110 protected:
112  ~RecursiveMultiResolutionPyramidImageFilter() override = default;
113  void
114  PrintSelf(std::ostream & os, Indent indent) const override;
115 
117  void
118  GenerateData() override;
119 };
120 } // namespace itk
121 
122 #ifndef ITK_MANUAL_INSTANTIATION
123 # include "itkRecursiveMultiResolutionPyramidImageFilter.hxx"
124 #endif
125 
126 #endif
itk::ImageSource::OutputImagePointer
typename OutputImageType::Pointer OutputImagePointer
Definition: itkImageSource.h:91
itkMultiResolutionPyramidImageFilter.h
itk::SmartPointer< Self >
itk::Indent
Control indentation during Print() invocation.
Definition: itkIndent.h:49
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::ImageToImageFilter::InputImagePointer
typename InputImageType::Pointer InputImagePointer
Definition: itkImageToImageFilter.h:130
itk::ImageToImageFilter::InputImageType
TInputImage InputImageType
Definition: itkImageToImageFilter.h:129
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:138
itk::ImageToImageFilter::InputImageConstPointer
typename InputImageType::ConstPointer InputImageConstPointer
Definition: itkImageToImageFilter.h:131
itk::ImageSource::OutputImageType
TOutputImage OutputImageType
Definition: itkImageSource.h:90
itk::DataObject
Base class for all data objects in ITK.
Definition: itkDataObject.h:293