ITK  4.13.0
Insight Segmentation and Registration Toolkit
itkPadImageFilter.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 itkPadImageFilter_h
19 #define itkPadImageFilter_h
20 
21 #include "itkPadImageFilterBase.h"
22 
24 
25 namespace itk
26 {
46 template< typename TInputImage, typename TOutputImage >
47 class ITK_TEMPLATE_EXPORT PadImageFilter:
48  public PadImageFilterBase< TInputImage, TOutputImage >
49 {
50 public:
56 
58  itkNewMacro(Self);
59 
61  typedef typename TOutputImage::RegionType OutputImageRegionType;
62  typedef typename TInputImage::RegionType InputImageRegionType;
63 
65  typedef typename TOutputImage::PixelType OutputImagePixelType;
66  typedef typename TInputImage::PixelType InputImagePixelType;
67 
73  typedef typename TInputImage::SizeType SizeType;
75 
79 
81  itkTypeMacro(PadImageFilter, PadImageFilterBase);
82 
84  itkStaticConstMacro(ImageDimension, unsigned int,
85  TInputImage::ImageDimension);
86 
89  itkSetMacro(PadLowerBound, SizeType);
90  itkSetMacro(PadUpperBound, SizeType);
91  itkGetConstReferenceMacro(PadLowerBound, SizeType);
92  itkGetConstReferenceMacro(PadUpperBound, SizeType);
93  itkSetVectorMacro(PadLowerBound, const SizeValueType, ImageDimension);
94  itkSetVectorMacro(PadUpperBound, const SizeValueType, ImageDimension);
96 
97  void SetPadBound(const InputImageSizeType & bound)
98  {
99  this->SetPadLowerBound(bound);
100  this->SetPadUpperBound(bound);
101  }
102 
103 protected:
104  PadImageFilter();
105  ~PadImageFilter() ITK_OVERRIDE {}
106  void PrintSelf(std::ostream & os, Indent indent) const ITK_OVERRIDE;
107 
114  virtual void GenerateOutputInformation() ITK_OVERRIDE;
115 
116 private:
117  ITK_DISALLOW_COPY_AND_ASSIGN(PadImageFilter);
118 
119  SizeType m_PadLowerBound;
120  SizeType m_PadUpperBound;
121 };
122 } // end namespace itk
123 
124 #ifndef ITK_MANUAL_INSTANTIATION
125 #include "itkPadImageFilter.hxx"
126 #endif
127 
128 #endif
TOutputImage::RegionType OutputImageRegionType
BoundaryConditionType * BoundaryConditionPointerType
TInputImage::SizeValueType SizeValueType
TInputImage::RegionType InputImageRegionType
SmartPointer< Self > Pointer
TInputImage::PixelType InputImagePixelType
Base class for all process objects that output image data.
unsigned long SizeValueType
Definition: itkIntTypes.h:143
TInputImage::IndexType InputImageIndexType
Increase the image size by padding. Superclass for filters that fill in extra pixels.
TOutputImage::SizeType OutputImageSizeType
TOutputImage::PixelType OutputImagePixelType
void SetPadBound(const InputImageSizeType &bound)
ImageBoundaryCondition< TInputImage, TOutputImage > BoundaryConditionType
A virtual base object that defines an interface to a class of boundary condition objects for use by n...
TInputImage::SizeType InputImageSizeType
PadImageFilterBase< TInputImage, TOutputImage > Superclass
TInputImage::SizeType SizeType
Control indentation during Print() invocation.
Definition: itkIndent.h:49
SmartPointer< const Self > ConstPointer
TOutputImage::IndexType OutputImageIndexType
Increase the image size by padding. Superclass for filters that fill in extra pixels.