ITK  4.13.0
Insight Segmentation and Registration Toolkit
itkInterpolateImagePointsFilter.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 /*=========================================================================
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 itkInterpolateImagePointsFilter_h
29 #define itkInterpolateImagePointsFilter_h
30 
32 #include "itkImageToImageFilter.h"
33 #include "itkImageRegionIterator.h"
34 
35 namespace itk
36 {
76 template< typename TInputImage,
77  typename TOutputImage,
78  typename TCoordType = typename TInputImage::PixelType,
79  typename InterpolatorType = BSplineInterpolateImageFunction< TInputImage, TCoordType > >
80 class ITK_TEMPLATE_EXPORT InterpolateImagePointsFilter:
81  public ImageToImageFilter< TInputImage, TOutputImage >
82 {
83 public:
89 
92 
94  itkNewMacro(Self);
95 
97  itkStaticConstMacro(ImageDimension, unsigned int, TInputImage::ImageDimension);
98 
100  typedef typename Superclass::InputImageType InputImageType;
101  typedef typename Superclass::OutputImageType OutputImageType;
102  typedef typename Superclass::InputImagePointer InputImagePointer;
103 
105  typedef typename TOutputImage::Pointer OutputImagePointer;
107  typedef typename OutputImageType::RegionType OutputImageRegionType;
108 
110  typedef typename TOutputImage::PixelType PixelType;
111 
113  typedef typename InterpolatorType::Pointer InterpolatorPointer;
114  typedef typename InterpolatorType::ContinuousIndexType ContinuousIndexType;
115 
118 
120  typedef ImageToImageFilterDetail::ImageRegionCopier< itkGetStaticConstMacro(ImageDimension),
121  itkGetStaticConstMacro(ImageDimension) > RegionCopierType;
122 
127  void SetInputImage(const TInputImage *inputImage);
128 
131  void SetInterpolationCoordinate(const CoordImageType *coordinate, unsigned int setDimension);
132 
134  itkSetMacro(DefaultPixelValue, PixelType);
135 
137  itkGetConstMacro(DefaultPixelValue, PixelType);
138 
141  { return m_Interpolator; }
142 
145  void GenerateOutputInformation() ITK_OVERRIDE;
146 
148  void GenerateInputRequestedRegion() ITK_OVERRIDE;
149 
150 #ifdef ITK_USE_CONCEPT_CHECKING
151  // Begin concept checking
152  itkConceptMacro( InputHasNumericTraitsCheck,
154  // End concept checking
155 #endif
156 
157 protected:
159  // ~InterpolateImagePointsFilter(){} default implemnetation ok
160 
161  void PrintSelf(std::ostream & os, Indent indent) const ITK_OVERRIDE;
162 
168  void ThreadedGenerateData(const OutputImageRegionType & outputRegionForThread,
169  ThreadIdType threadId) ITK_OVERRIDE;
170 
171  void BeforeThreadedGenerateData() ITK_OVERRIDE;
172 
178  virtual void VerifyInputInformation() ITK_OVERRIDE {}
179 
180 private:
181 
186 
187  ITK_DISALLOW_COPY_AND_ASSIGN(InterpolateImagePointsFilter);
188 
190  PixelType m_DefaultPixelValue; // default pixel value if the
191  // point is outside the image
192 };
193 } // namespace itk
194 
195 #ifndef ITK_MANUAL_INSTANTIATION
196 #include "itkInterpolateImagePointsFilter.hxx"
197 #endif
198 
199 #endif
Superclass::RegionType RegionType
Definition: itkImage.h:137
ImageToImageFilter< TInputImage, TOutputImage > Superclass
ImageRegionConstIterator< CoordImageType > CoordImageIterator
A Function object used to dispatching to a routine to copy a region (start index and size)...
InterpolatorType::ContinuousIndexType ContinuousIndexType
Base class for all process objects that output image data.
ImageRegionIterator< InputImageType > OutputImageIterator
A multi-dimensional iterator templated over image type that walks a region of pixels.
ImageToImageFilterDetail::ImageRegionCopier< itkGetStaticConstMacro(ImageDimension), itkGetStaticConstMacro(ImageDimension) > RegionCopierType
unsigned int ThreadIdType
Definition: itkIntTypes.h:159
Resamples an image at the coordinates specified by the user.
Base class for filters that take an image as input and produce an image as output.
Control indentation during Print() invocation.
Definition: itkIndent.h:49
Image< TCoordType, itkGetStaticConstMacro(ImageDimension) > CoordImageType
#define itkConceptMacro(name, concept)
Templated n-dimensional image class.
Definition: itkImage.h:75
A multi-dimensional iterator templated over image type that walks a region of pixels.