ITK  4.13.0
Insight Segmentation and Registration Toolkit
itkVectorExpandImageFilter.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 itkVectorExpandImageFilter_h
19 #define itkVectorExpandImageFilter_h
20 
21 #include "itkImageToImageFilter.h"
23 
24 namespace itk
25 {
71 template< typename TInputImage, typename TOutputImage >
72 class ITK_TEMPLATE_EXPORT VectorExpandImageFilter:
73  public ImageToImageFilter< TInputImage, TOutputImage >
74 {
75 public:
81 
83  itkNewMacro(Self);
84 
86  typedef typename TInputImage::Pointer InputImagePointer;
87  typedef typename TOutputImage::Pointer OutputImagePointer;
88  typedef typename TOutputImage::RegionType OutputImageRegionType;
89 
92 
94  itkStaticConstMacro(ImageDimension, unsigned int,
95  TInputImage::ImageDimension);
96 
98  typedef typename Superclass::InputImageType InputImageType;
99  typedef typename Superclass::OutputImageType OutputImageType;
100 
102  typedef typename OutputImageType::PixelType OutputPixelType;
103  typedef typename OutputPixelType::ValueType OutputValueType;
104  typedef typename InputImageType::PixelType InputPixelType;
105  typedef typename InputPixelType::ValueType InputValueType;
106 
108  enum { VectorDimension = InputPixelType::Dimension };
109 
111  typedef float ExpandFactorsType;
113 
115  typedef double CoordRepType;
119 
121  itkSetObjectMacro(Interpolator, InterpolatorType);
122  itkGetModifiableObjectMacro(Interpolator, InterpolatorType);
124 
127  itkSetMacro(ExpandFactors, ExpandFactorsArrayType);
128  virtual void SetExpandFactors(const float factor);
129  itkSetVectorMacro(ExpandFactors, const unsigned int, ImageDimension);
131 
133  itkGetConstReferenceMacro(ExpandFactors, ExpandFactorsArrayType);
134 
137 //TEST_RMV20100728 virtual void SetEdgePaddingValue( const OutputPixelType&
138 // value );
139 //TEST_RMV20100728
140 
142 //TEST_RMV20100728 virtual const OutputPixelType& GetEdgePaddingValue()
143 //TEST_RMV20100728 { return m_EdgePaddingValue; }
144 
151  virtual void GenerateOutputInformation() ITK_OVERRIDE;
152 
158  virtual void GenerateInputRequestedRegion() ITK_OVERRIDE;
159 
160 #ifdef ITK_USE_CONCEPT_CHECKING
161  // Begin concept checking
162  itkConceptMacro( InputHasNumericTraitsCheck,
164  itkConceptMacro( OutputHasNumericTraitsCheck,
166  // End concept checking
167 #endif
168 
169 protected:
170 
172  ~VectorExpandImageFilter() ITK_OVERRIDE {}
173  void PrintSelf(std::ostream & os, Indent indent) const ITK_OVERRIDE;
174 
183  virtual
184  void ThreadedGenerateData(const OutputImageRegionType & outputRegionForThread,
185  ThreadIdType threadId) ITK_OVERRIDE;
186 
189  virtual void BeforeThreadedGenerateData() ITK_OVERRIDE;
190 
191 private:
192  ITK_DISALLOW_COPY_AND_ASSIGN(VectorExpandImageFilter);
193 
194  ExpandFactorsArrayType m_ExpandFactors;
195  InterpolatorPointer m_Interpolator;
196 //TEST_RMV20100728 * \warning: The following is valid only when the flag
197 //TEST_RMV20100728 * ITK_USE_CENTERED_PIXEL_COORDINATES_CONSISTENTLY is ON
198 //TEST_RMV20100728 * The output image will not contain any padding, and
199 // therefore the
200 //TEST_RMV20100728 * EdgePaddingValue will not be used.
201 //TEST_RMV20100728 *
202 //TEST_RMV20100728 OutputPixelType m_EdgePaddingValue;
203 };
204 } // end namespace itk
205 
206 #ifndef ITK_MANUAL_INSTANTIATION
207 #include "itkVectorExpandImageFilter.hxx"
208 #endif
209 
210 #endif
Superclass::InputImageType InputImageType
OutputImageType::PixelType OutputPixelType
TOutputImage::RegionType OutputImageRegionType
InterpolatorType::Pointer InterpolatorPointer
InputImageType::PixelType InputPixelType
Base class for all process objects that output image data.
VectorLinearInterpolateImageFunction< InputImageType, CoordRepType > DefaultInterpolatorType
Expand the size of a vector image by an integer factor in each dimension.
OutputPixelType::ValueType OutputValueType
Superclass::OutputImageType OutputImageType
ImageToImageFilter< TInputImage, TOutputImage > Superclass
unsigned int ThreadIdType
Definition: itkIntTypes.h:159
VectorInterpolateImageFunction< InputImageType, CoordRepType > InterpolatorType
Base class for filters that take an image as input and produce an image as output.
FixedArray< ExpandFactorsType, ImageDimension > ExpandFactorsArrayType
InputPixelType::ValueType InputValueType
Control indentation during Print() invocation.
Definition: itkIndent.h:49
Base class for all vector image interpolaters.
#define itkConceptMacro(name, concept)
Linearly interpolate a vector image at specified positions.
SmartPointer< const Self > ConstPointer