ITK  5.1.0
Insight Toolkit
itkPadLabelMapFilter.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 /*=========================================================================
19  *
20  * Portions of this file are subject to the VTK Toolkit Version 3 copyright.
21  *
22  * Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
23  *
24  * For complete copyright, license and disclaimer of warranty information
25  * please refer to the NOTICE file at the top of the ITK source tree.
26  *
27  *=========================================================================*/
28 #ifndef itkPadLabelMapFilter_h
29 #define itkPadLabelMapFilter_h
30 
32 
33 namespace itk
34 {
55 template <typename TInputImage>
56 class ITK_TEMPLATE_EXPORT PadLabelMapFilter : public ChangeRegionLabelMapFilter<TInputImage>
57 {
58 public:
59  ITK_DISALLOW_COPY_AND_ASSIGN(PadLabelMapFilter);
60 
66 
69 
71  itkNewMacro(Self);
72 
74  using OutputImageType = typename Superclass::OutputImageType;
75  using OutputImagePointer = typename Superclass::OutputImagePointer;
76  using OutputImageRegionType = typename Superclass::OutputImageRegionType;
77  using OutputImagePixelType = typename Superclass::OutputImagePixelType;
78 
80  using InputImageType = TInputImage;
81  using InputImagePointer = typename InputImageType::Pointer;
82  using InputImageConstPointer = typename InputImageType::ConstPointer;
84  using InputImagePixelType = typename InputImageType::PixelType;
85  using LabelObjectType = typename InputImageType::LabelObjectType;
86 
87  using PixelType = typename InputImageType::PixelType;
91 
92  using TOutputImage = TInputImage;
93 
95  static constexpr unsigned int InputImageDimension = TInputImage::ImageDimension;
96  static constexpr unsigned int OutputImageDimension = TOutputImage::ImageDimension;
97  static constexpr unsigned int ImageDimension = TOutputImage::ImageDimension;
98 
100  itkSetMacro(UpperBoundaryPadSize, SizeType);
101  itkGetMacro(UpperBoundaryPadSize, SizeType);
102  itkSetMacro(LowerBoundaryPadSize, SizeType);
103  itkGetMacro(LowerBoundaryPadSize, SizeType);
105 
106  void
107  SetPadSize(const SizeType & size)
108  {
109  this->SetUpperBoundaryPadSize(size);
110  this->SetLowerBoundaryPadSize(size);
111  }
112 
113 protected:
115  {
116  m_UpperBoundaryPadSize.Fill(0);
117  m_LowerBoundaryPadSize.Fill(0);
118  }
119 
120  ~PadLabelMapFilter() override = default;
121 
122  void
123  GenerateOutputInformation() override;
124 
125  void
126  PrintSelf(std::ostream & os, Indent indent) const override;
127 
128 private:
131 };
132 } // end namespace itk
133 
134 #ifndef ITK_MANUAL_INSTANTIATION
135 # include "itkPadLabelMapFilter.hxx"
136 #endif
137 
138 #endif
itk::ChangeRegionLabelMapFilter::PixelType
typename InputImageType::PixelType PixelType
Definition: itkChangeRegionLabelMapFilter.h:88
itk::PadLabelMapFilter::PadLabelMapFilter
PadLabelMapFilter()
Definition: itkPadLabelMapFilter.h:114
itk::PadLabelMapFilter::m_UpperBoundaryPadSize
SizeType m_UpperBoundaryPadSize
Definition: itkPadLabelMapFilter.h:129
itk::PadLabelMapFilter
Pad a LabelMap image.
Definition: itkPadLabelMapFilter.h:56
itk::ChangeRegionLabelMapFilter::OutputImagePointer
typename Superclass::OutputImagePointer OutputImagePointer
Definition: itkChangeRegionLabelMapFilter.h:76
itk::ChangeRegionLabelMapFilter
Change the region of a label map.
Definition: itkChangeRegionLabelMapFilter.h:57
itk::GTest::TypedefsAndConstructors::Dimension2::SizeType
ImageBaseType::SizeType SizeType
Definition: itkGTestTypedefsAndConstructors.h:49
itk::SmartPointer< Self >
itk::Indent
Control indentation during Print() invocation.
Definition: itkIndent.h:49
itk::ChangeRegionLabelMapFilter::RegionType
typename InputImageType::RegionType RegionType
Definition: itkChangeRegionLabelMapFilter.h:92
itk::ChangeRegionLabelMapFilter::IndexType
typename InputImageType::IndexType IndexType
Definition: itkChangeRegionLabelMapFilter.h:89
itk::ChangeRegionLabelMapFilter::InputImagePointer
typename InputImageType::Pointer InputImagePointer
Definition: itkChangeRegionLabelMapFilter.h:82
itk::PadLabelMapFilter::m_LowerBoundaryPadSize
SizeType m_LowerBoundaryPadSize
Definition: itkPadLabelMapFilter.h:130
itk::GTest::TypedefsAndConstructors::Dimension2::IndexType
ImageBaseType::IndexType IndexType
Definition: itkGTestTypedefsAndConstructors.h:50
itk::PadLabelMapFilter::SetPadSize
void SetPadSize(const SizeType &size)
Definition: itkPadLabelMapFilter.h:107
itk::LightObject
Light weight base class for most itk classes.
Definition: itkLightObject.h:59
itk::ChangeRegionLabelMapFilter::SizeType
typename InputImageType::SizeType SizeType
Definition: itkChangeRegionLabelMapFilter.h:91
itk::GTest::TypedefsAndConstructors::Dimension2::RegionType
ImageBaseType::RegionType RegionType
Definition: itkGTestTypedefsAndConstructors.h:54
itk::ChangeRegionLabelMapFilter::OutputImagePixelType
typename Superclass::OutputImagePixelType OutputImagePixelType
Definition: itkChangeRegionLabelMapFilter.h:78
itk::ChangeRegionLabelMapFilter::InputImageConstPointer
typename InputImageType::ConstPointer InputImageConstPointer
Definition: itkChangeRegionLabelMapFilter.h:83
itk::ChangeRegionLabelMapFilter::OutputImageRegionType
typename Superclass::OutputImageRegionType OutputImageRegionType
Definition: itkChangeRegionLabelMapFilter.h:77
itk
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Definition: itkArray.h:26
itkChangeRegionLabelMapFilter.h
itk::ChangeRegionLabelMapFilter::TOutputImage
TInputImage TOutputImage
Definition: itkChangeRegionLabelMapFilter.h:94
itk::ChangeRegionLabelMapFilter::LabelObjectType
typename InputImageType::LabelObjectType LabelObjectType
Definition: itkChangeRegionLabelMapFilter.h:86
itk::ChangeRegionLabelMapFilter::InputImagePixelType
typename InputImageType::PixelType InputImagePixelType
Definition: itkChangeRegionLabelMapFilter.h:85
itk::ChangeRegionLabelMapFilter::InputImageRegionType
typename InputImageType::RegionType InputImageRegionType
Definition: itkChangeRegionLabelMapFilter.h:84
itk::ChangeRegionLabelMapFilter::InputImageType
TInputImage InputImageType
Definition: itkChangeRegionLabelMapFilter.h:81
itk::ChangeRegionLabelMapFilter::OutputImageType
typename Superclass::OutputImageType OutputImageType
Definition: itkChangeRegionLabelMapFilter.h:75