ITK  4.4.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< class TInputImage, class TOutputImage >
72 class ITK_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();
152 
158  virtual void GenerateInputRequestedRegion();
159 
160 #ifdef ITK_USE_CONCEPT_CHECKING
161 
162  itkConceptMacro( InputHasNumericTraitsCheck,
164  itkConceptMacro( OutputHasNumericTraitsCheck,
166 
168 #endif
169 
170 protected:
171 
174  void PrintSelf(std::ostream & os, Indent indent) const;
175 
184  virtual
185  void ThreadedGenerateData(const OutputImageRegionType & outputRegionForThread,
186  ThreadIdType threadId);
187 
190  virtual void BeforeThreadedGenerateData();
191 
192 private:
193  VectorExpandImageFilter(const Self &); //purposely not implemented
194  void operator=(const Self &); //purposely not implemented
195 
198 //TEST_RMV20100728 * \warning: The following is valid only when the flag
199 //TEST_RMV20100728 * ITK_USE_CENTERED_PIXEL_COORDINATES_CONSISTENTLY is ON
200 //TEST_RMV20100728 * The output image will not contain any padding, and
201 // therefore the
202 //TEST_RMV20100728 * EdgePaddingValue will not be used.
203 //TEST_RMV20100728 *
204 //TEST_RMV20100728 OutputPixelType m_EdgePaddingValue;
205 };
206 } // end namespace itk
207 
208 #ifndef ITK_MANUAL_INSTANTIATION
209 #include "itkVectorExpandImageFilter.hxx"
210 #endif
211 
212 #endif
213