SimpleITK  2.0.0
sitkWarpImageFilter.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 #ifndef sitkWarpImageFilter_h
19 #define sitkWarpImageFilter_h
20 
21 /*
22  * WARNING: DO NOT EDIT THIS FILE!
23  * THIS FILE IS AUTOMATICALLY GENERATED BY THE SIMPLEITK BUILD PROCESS.
24  * Please look at sitkDualImageFilterTemplate.h.in to make changes.
25  */
26 
27 #include <memory>
28 
29 #include "sitkImageFilter.h"
31 #include "sitkBasicFilters.h"
32 
33 namespace itk {
34  namespace simple {
35 
66  public:
68 
70  virtual ~WarpImageFilter();
71 
75 
78 
79 \
80 
84  SITK_RETURN_SELF_TYPE_HEADER SetInterpolator ( InterpolatorEnum Interpolator ) { this->m_Interpolator = Interpolator; return *this; }
85 
89  InterpolatorEnum GetInterpolator() const { return this->m_Interpolator; }\
90 
94  SITK_RETURN_SELF_TYPE_HEADER SetOutputSize ( std::vector<uint32_t> OutputSize ) { this->m_OutputSize = std::move(OutputSize); return *this; }
95 
99  std::vector<uint32_t> GetOutputSize() const { return this->m_OutputSize; }\
100 
104  SITK_RETURN_SELF_TYPE_HEADER SetOutputOrigin ( std::vector<double> OutputOrigin ) { this->m_OutputOrigin = std::move(OutputOrigin); return *this; }
105 
109  std::vector<double> GetOutputOrigin() const { return this->m_OutputOrigin; }\
110 
114  SITK_RETURN_SELF_TYPE_HEADER SetOutputSpacing ( std::vector<double> OutputSpacing ) { this->m_OutputSpacing = std::move(OutputSpacing); return *this; }
115 
119  std::vector<double> GetOutputSpacing() const { return this->m_OutputSpacing; }\
120 
124  SITK_RETURN_SELF_TYPE_HEADER SetOutputDirection ( std::vector<double> OutputDirection ) { this->m_OutputDirection = OutputDirection; return *this; }
125 
129  std::vector<double> GetOutputDirection() const { return this->m_OutputDirection; }\
130 
134  SITK_RETURN_SELF_TYPE_HEADER SetEdgePaddingValue ( double EdgePaddingValue ) { this->m_EdgePaddingValue = EdgePaddingValue; return *this; }
135 
139  double GetEdgePaddingValue() const { return this->m_EdgePaddingValue; }
140 
142  std::string GetName() const { return std::string ("WarpImageFilter"); }
143 
145  std::string ToString() const;
146 
147 
150  Image Execute ( const Image & image, const Image & displacementField );
151 
152 
154  void SetOutputParameteresFromImage(const Image & refImage );
155 
156 
157  private:
159  using MemberFunctionType = Image (Self::*)( const Image * image, const Image * displacementField );
160 
162  template <class TImageType1, class TImageType2> Image DualExecuteInternal ( const Image * image, const Image * displacementField );
164  template <class TImageType1, class TImageType2> Image DualExecuteInternalVector ( const Image * image, const Image * displacementField );
165 
166  std::unique_ptr<detail::DualMemberFunctionFactory<MemberFunctionType> > m_DualMemberFactory;
167 
168 
169 
170  /* */
172 
173  /* */
174  std::vector<uint32_t> m_OutputSize{std::vector<uint32_t>(3, 0)};
175 
176  /* */
177  std::vector<double> m_OutputOrigin{std::vector<double>(3, 0.0)};
178 
179  /* */
180  std::vector<double> m_OutputSpacing{std::vector<double>(3, 1.0)};
181 
182  /* Passing a zero sized array, defaults to identiy matrix. The size of the array must exactly match the direction matrix for the dimension of the image. */
183  std::vector<double> m_OutputDirection{std::vector<double>()};
184 
185  double m_EdgePaddingValue{0.0};
186 
187 
188  };
189 
200  SITKBasicFilters_EXPORT Image Warp ( const Image & image, const Image & displacementField, InterpolatorEnum interpolator = itk::simple::sitkLinear, std::vector<uint32_t> outputSize = std::vector<uint32_t>(3, 0), std::vector<double> outputOrigin = std::vector<double>(3, 0.0), std::vector<double> outputSpacing = std::vector<double>(3, 1.0), std::vector<double> outputDirection = std::vector<double>(), double edgePaddingValue = 0.0 );
201 
203  }
204 }
205 #endif
itk::simple::Image
The Image class for SimpleITK.
Definition: sitkImage.h:75
sitkBasicFilters.h
itk::simple::sitkLinear
@ sitkLinear
N-D linear interpolation.
Definition: sitkInterpolator.h:39
itk::simple::WarpImageFilter::SetOutputDirection
Self & SetOutputDirection(std::vector< double > OutputDirection)
Definition: sitkWarpImageFilter.h:124
itk::simple::InterpolatorEnum
InterpolatorEnum
Definition: sitkInterpolator.h:30
itk::simple::WarpImageFilter::SetOutputSpacing
Self & SetOutputSpacing(std::vector< double > OutputSpacing)
Definition: sitkWarpImageFilter.h:114
itk::simple::WarpImageFilter::GetEdgePaddingValue
double GetEdgePaddingValue() const
Definition: sitkWarpImageFilter.h:139
itk::simple::WarpImageFilter
Warps an image using an input displacement field.
Definition: sitkWarpImageFilter.h:65
itk::simple::WarpImageFilter::GetName
std::string GetName() const
Definition: sitkWarpImageFilter.h:142
itk::simple::WarpImageFilter::PixelIDTypeList
BasicPixelIDTypeList PixelIDTypeList
Definition: sitkWarpImageFilter.h:77
itk::simple::WarpImageFilter::SetOutputSize
Self & SetOutputSize(std::vector< uint32_t > OutputSize)
Definition: sitkWarpImageFilter.h:94
itk::simple::WarpImageFilter::SetInterpolator
Self & SetInterpolator(InterpolatorEnum Interpolator)
Definition: sitkWarpImageFilter.h:84
itk::simple::WarpImageFilter::GetOutputDirection
std::vector< double > GetOutputDirection() const
Definition: sitkWarpImageFilter.h:129
itk::simple::BasicPixelIDTypeList
typelist::MakeTypeList< BasicPixelID< int8_t >, BasicPixelID< uint8_t >, BasicPixelID< int16_t >, BasicPixelID< uint16_t >, BasicPixelID< int32_t >, BasicPixelID< uint32_t >, BasicPixelID< float >, BasicPixelID< double > >::Type BasicPixelIDTypeList
Definition: sitkPixelIDTypeLists.h:53
sitkImageFilter.h
itk::simple::WarpImageFilter::SetEdgePaddingValue
Self & SetEdgePaddingValue(double EdgePaddingValue)
Definition: sitkWarpImageFilter.h:134
itk::simple::Warp
Image Warp(const Image &image, const Image &displacementField, InterpolatorEnum interpolator=itk::simple::sitkLinear, std::vector< uint32_t > outputSize=std::vector< uint32_t >(3, 0), std::vector< double > outputOrigin=std::vector< double >(3, 0.0), std::vector< double > outputSpacing=std::vector< double >(3, 1.0), std::vector< double > outputDirection=std::vector< double >(), double edgePaddingValue=0.0)
Warps an image using an input displacement field.
itk::simple::WarpImageFilter::GetOutputSize
std::vector< uint32_t > GetOutputSize() const
Definition: sitkWarpImageFilter.h:99
itk::simple::detail::DualExecuteInternalVectorAddressor
Definition: sitkDetail.h:75
itk::simple::WarpImageFilter::GetOutputSpacing
std::vector< double > GetOutputSpacing() const
Definition: sitkWarpImageFilter.h:119
sitkDualMemberFunctionFactory.h
itk::simple::WarpImageFilter::MemberFunctionType
Image(Self::*)(const Image *image, const Image *displacementField) MemberFunctionType
Definition: sitkWarpImageFilter.h:159
SITKBasicFilters_EXPORT
#define SITKBasicFilters_EXPORT
Definition: sitkBasicFilters.h:52
itk::simple::detail::DualExecuteInternalAddressor
Definition: sitkDetail.h:44
itk
itk::simple::WarpImageFilter::SetOutputOrigin
Self & SetOutputOrigin(std::vector< double > OutputOrigin)
Definition: sitkWarpImageFilter.h:104
itk::simple::ImageFilter
The base interface for SimpleITK filters that take one input image.
Definition: sitkImageFilter.h:36
itk::simple::WarpImageFilter::GetInterpolator
InterpolatorEnum GetInterpolator() const
Definition: sitkWarpImageFilter.h:89
itk::Image
Definition: sitkPixelIDTypes.h:26
itk::simple::WarpImageFilter::m_DualMemberFactory
std::unique_ptr< detail::DualMemberFunctionFactory< MemberFunctionType > > m_DualMemberFactory
Definition: sitkWarpImageFilter.h:166
itk::simple::WarpImageFilter::GetOutputOrigin
std::vector< double > GetOutputOrigin() const
Definition: sitkWarpImageFilter.h:109