ITK  4.13.0
Insight Segmentation and Registration Toolkit
itkWrapPadImageFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright Insight Software Consortium
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 itkWrapPadImageFilter_h
19 #define itkWrapPadImageFilter_h
20 
21 #include "itkPadImageFilter.h"
22 
24 
25 namespace itk
26 {
52 template< typename TInputImage, typename TOutputImage >
53 class ITK_TEMPLATE_EXPORT WrapPadImageFilter:
54  public PadImageFilter< TInputImage, TOutputImage >
55 {
56 public:
62 
64  itkNewMacro(Self);
65 
68 
69  typedef typename Superclass::InputImageType InputImageType;
70  typedef typename Superclass::OutputImageType OutputImageType;
71  typedef typename Superclass::InputImagePointer InputImagePointer;
72  typedef typename Superclass::OutputImagePointer OutputImagePointer;
73  typedef typename Superclass::InputImageConstPointer InputImageConstPointer;
74 
76  typedef typename Superclass::OutputImageRegionType OutputImageRegionType;
77  typedef typename Superclass::InputImageRegionType InputImageRegionType;
78 
80  typedef typename Superclass::OutputImagePixelType OutputImagePixelType;
81  typedef typename Superclass::InputImagePixelType InputImagePixelType;
82 
84  typedef typename Superclass::OutputImageIndexType OutputImageIndexType;
85  typedef typename Superclass::InputImageIndexType InputImageIndexType;
86  typedef typename Superclass::OutputImageSizeType OutputImageSizeType;
87  typedef typename Superclass::InputImageSizeType InputImageSizeType;
88 
90  itkStaticConstMacro(ImageDimension, unsigned int,
91  TInputImage::ImageDimension);
92 
93 #ifdef ITK_USE_CONCEPT_CHECKING
94  // Begin concept checking
95  itkConceptMacro( InputConvertibleToOutputCheck,
97  // End concept checking
98 #endif
99 
100 protected:
102  ~WrapPadImageFilter() ITK_OVERRIDE {}
103 
104 private:
105  ITK_DISALLOW_COPY_AND_ASSIGN(WrapPadImageFilter);
106 
108 };
109 } // end namespace itk
110 
111 #ifndef ITK_MANUAL_INSTANTIATION
112 #include "itkWrapPadImageFilter.hxx"
113 #endif
114 
115 #endif
Superclass::InputImageIndexType InputImageIndexType
Superclass::InputImageRegionType InputImageRegionType
SmartPointer< Self > Pointer
Base class for all process objects that output image data.
Superclass::OutputImagePixelType OutputImagePixelType
Superclass::OutputImageSizeType OutputImageSizeType
Superclass::OutputImageIndexType OutputImageIndexType
A function object that determines values outside of image boundaries according to periodic (wrap-arou...
Superclass::InputImageSizeType InputImageSizeType
Increase the image size by padding with replicants of the input image value.
Superclass::OutputImageType OutputImageType
Superclass::InputImagePixelType InputImagePixelType
Superclass::InputImageConstPointer InputImageConstPointer
Superclass::OutputImagePointer OutputImagePointer
PeriodicBoundaryCondition< TInputImage, TOutputImage > m_InternalBoundaryCondition
SmartPointer< const Self > ConstPointer
Superclass::InputImageType InputImageType
PadImageFilter< TInputImage, TOutputImage > Superclass
Increase the image size by padding. Superclass for filters that fill in extra pixels.
Superclass::OutputImageRegionType OutputImageRegionType
#define itkConceptMacro(name, concept)
Superclass::InputImagePointer InputImagePointer