ITK  6.0.0
Insight Toolkit
itkExpandImageFilter.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 itkExpandImageFilter_h
19 #define itkExpandImageFilter_h
20 
21 #include "itkImageToImageFilter.h"
23 
24 namespace itk
25 {
63 template <typename TInputImage, typename TOutputImage>
64 class ITK_TEMPLATE_EXPORT ExpandImageFilter : public ImageToImageFilter<TInputImage, TOutputImage>
65 {
66 public:
67  ITK_DISALLOW_COPY_AND_MOVE(ExpandImageFilter);
68 
74 
76  itkNewMacro(Self);
77 
79  itkOverrideGetNameOfClassMacro(ExpandImageFilter);
80 
83 
85  static constexpr unsigned int ImageDimension = TInputImage::ImageDimension;
86 
88  using typename Superclass::InputImageType;
89  using typename Superclass::OutputImageType;
90  using OutputPixelType = typename OutputImageType::PixelType;
93 
95  using CoordinateType = double;
96 #ifndef ITK_FUTURE_LEGACY_REMOVE
97  using CoordRepType ITK_FUTURE_DEPRECATED(
98  "ITK 6 discourages using `CoordRepType`. Please use `CoordinateType` instead!") = CoordinateType;
99 #endif
103 
105  itkSetObjectMacro(Interpolator, InterpolatorType);
106  itkGetModifiableObjectMacro(Interpolator, InterpolatorType);
111 
114  itkSetMacro(ExpandFactors, ExpandFactorsType);
115  virtual void
116  SetExpandFactors(const unsigned int factor);
120  itkGetConstReferenceMacro(ExpandFactors, ExpandFactorsType);
121 
122 
129  void
130  GenerateOutputInformation() override;
131 
137  void
138  GenerateInputRequestedRegion() override;
139 
140 protected:
142  ~ExpandImageFilter() override = default;
143  void
144  PrintSelf(std::ostream & os, Indent indent) const override;
145 
156  void
157  DynamicThreadedGenerateData(const OutputImageRegionType & outputRegionForThread) override;
158 
159 
162  void
163  BeforeThreadedGenerateData() override;
164 
165 private:
166  ExpandFactorsType m_ExpandFactors{};
167  InterpolatorPointer m_Interpolator{};
168 };
169 } // end namespace itk
170 
171 #ifndef ITK_MANUAL_INSTANTIATION
172 # include "itkExpandImageFilter.hxx"
173 #endif
174 
175 #endif
Pointer
SmartPointer< Self > Pointer
Definition: itkAddImageFilter.h:93
itk::ImageSource::OutputImagePointer
typename OutputImageType::Pointer OutputImagePointer
Definition: itkImageSource.h:91
itk::ExpandImageFilter::CoordinateType
double CoordinateType
Definition: itkExpandImageFilter.h:95
itkLinearInterpolateImageFunction.h
itk::SmartPointer< Self >
itk::Indent
Control indentation during Print() invocation.
Definition: itkIndent.h:49
itk::ExpandImageFilter::OutputPixelType
typename OutputImageType::PixelType OutputPixelType
Definition: itkExpandImageFilter.h:90
itk::ImageToImageFilter
Base class for filters that take an image as input and produce an image as output.
Definition: itkImageToImageFilter.h:108
itk::ImageSource
Base class for all process objects that output image data.
Definition: itkImageSource.h:67
itk::LinearInterpolateImageFunction
Linearly interpolate an image at specified positions.
Definition: itkLinearInterpolateImageFunction.h:51
itk::ImageToImageFilter::InputImagePointer
typename InputImageType::Pointer InputImagePointer
Definition: itkImageToImageFilter.h:130
itk::GTest::TypedefsAndConstructors::Dimension2::RegionType
ImageBaseType::RegionType RegionType
Definition: itkGTestTypedefsAndConstructors.h:54
itkImageToImageFilter.h
itk::FixedArray< unsigned int, ImageDimension >
itk::ImageSource::OutputImageRegionType
typename OutputImageType::RegionType OutputImageRegionType
Definition: itkImageSource.h:92
itk::ExpandImageFilter
Expand the size of an image by an integer factor in each dimension.
Definition: itkExpandImageFilter.h:64
itk
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Definition: itkAnatomicalOrientation.h:29
itk::ExpandImageFilter::InterpolatorPointer
typename InterpolatorType::Pointer InterpolatorPointer
Definition: itkExpandImageFilter.h:101
itk::ProcessObject
The base class for all process objects (source, filters, mappers) in the Insight data processing pipe...
Definition: itkProcessObject.h:139
itk::InterpolateImageFunction
Base class for all image interpolators.
Definition: itkInterpolateImageFunction.h:45