ITK  6.0.0
Insight Toolkit
itkWrapPadImageFilter.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 itkWrapPadImageFilter_h
19#define itkWrapPadImageFilter_h
20
21#include "itkPadImageFilter.h"
22
24
25namespace itk
26{
53template <typename TInputImage, typename TOutputImage>
54class ITK_TEMPLATE_EXPORT WrapPadImageFilter : public PadImageFilter<TInputImage, TOutputImage>
55{
56public:
57 ITK_DISALLOW_COPY_AND_MOVE(WrapPadImageFilter);
58
64
66 itkNewMacro(Self);
67
69 itkOverrideGetNameOfClassMacro(WrapPadImageFilter);
70
71 using typename Superclass::InputImageType;
72 using typename Superclass::OutputImageType;
73 using typename Superclass::InputImagePointer;
74 using typename Superclass::OutputImagePointer;
75 using typename Superclass::InputImageConstPointer;
76
78 using typename Superclass::OutputImageRegionType;
79 using typename Superclass::InputImageRegionType;
80
82 using typename Superclass::OutputImagePixelType;
83 using typename Superclass::InputImagePixelType;
84
86 using typename Superclass::OutputImageIndexType;
87 using typename Superclass::InputImageIndexType;
88 using typename Superclass::OutputImageSizeType;
89 using typename Superclass::InputImageSizeType;
90
92 static constexpr unsigned int ImageDimension = TInputImage::ImageDimension;
93
94#ifdef ITK_USE_CONCEPT_CHECKING
95 // Begin concept checking
97 // End concept checking
98#endif
99
100protected:
102 ~WrapPadImageFilter() override = default;
103
104private:
106};
107} // end namespace itk
108
109#ifndef ITK_MANUAL_INSTANTIATION
110# include "itkWrapPadImageFilter.hxx"
111#endif
112
113#endif
Base class for all process objects that output image data.
Increase the image size by padding. Superclass for filters that fill in extra pixels.
The base class for all process objects (source, filters, mappers) in the Insight data processing pipe...
Increase the image size by padding with replicants of the input image value.
~WrapPadImageFilter() override=default
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....