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
24namespace itk
25{
63template <typename TInputImage, typename TOutputImage>
65 : public MultiResolutionPyramidImageFilter<TInputImage, TOutputImage>
66{
67public:
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
107 void
109
110protected:
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
Base class for all data objects in ITK.
Base class for all process objects that output image data.
Framework for creating images in a multi-resolution pyramid.
The base class for all process objects (source, filters, mappers) in the Insight data processing pipe...
Creates a multi-resolution pyramid using a recursive implementation.
~RecursiveMultiResolutionPyramidImageFilter() override=default
void GenerateOutputRequestedRegion(DataObject *ptr) override
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....