SimpleITK  
sitkLevelSetMotionRegistrationFilter.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 sitkLevelSetMotionRegistrationFilter_h
19 #define sitkLevelSetMotionRegistrationFilter_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 sitkImageFilterTemplate.h.in to make changes.
25  */
26 
27 #include <memory>
28 
29 #include "sitkBasicFilters.h"
30 #include "sitkImageFilter.h"
31 
32 namespace itk {
33  namespace simple {
34 
67  public:
69 
72 
76 
79 \
80 
84  SITK_RETURN_SELF_TYPE_HEADER SetGradientSmoothingStandardDeviations ( double GradientSmoothingStandardDeviations ) { this->m_GradientSmoothingStandardDeviations = GradientSmoothingStandardDeviations; return *this; }
85 
88  double GetGradientSmoothingStandardDeviations() const { return this->m_GradientSmoothingStandardDeviations; }\
89 
92  SITK_RETURN_SELF_TYPE_HEADER SetNumberOfIterations ( uint32_t NumberOfIterations ) { this->m_NumberOfIterations = NumberOfIterations; return *this; }
93 
96  uint32_t GetNumberOfIterations() const { return this->m_NumberOfIterations; }\
97 
100  SITK_RETURN_SELF_TYPE_HEADER SetMaximumRMSError ( double MaximumRMSError ) { this->m_MaximumRMSError = MaximumRMSError; return *this; }
101 
104  double GetMaximumRMSError() const { return this->m_MaximumRMSError; }\
105 
109  SITK_RETURN_SELF_TYPE_HEADER SetStandardDeviations ( std::vector<double> StandardDeviations ) { this->m_StandardDeviations = std::move(StandardDeviations); return *this; }
110 
112  SITK_RETURN_SELF_TYPE_HEADER SetStandardDeviations( double value ) { this->m_StandardDeviations = std::vector<double>(3, value); return *this; }
113 
117  std::vector<double> GetStandardDeviations() const { return this->m_StandardDeviations; }\
118 
122  SITK_RETURN_SELF_TYPE_HEADER SetSmoothDisplacementField ( bool SmoothDisplacementField ) { this->m_SmoothDisplacementField = SmoothDisplacementField; return *this; }
123 
125  SITK_RETURN_SELF_TYPE_HEADER SmoothDisplacementFieldOn() { return this->SetSmoothDisplacementField(true); }
126  SITK_RETURN_SELF_TYPE_HEADER SmoothDisplacementFieldOff() { return this->SetSmoothDisplacementField(false); }
127 
131  bool GetSmoothDisplacementField() const { return this->m_SmoothDisplacementField; }\
132 
136  SITK_RETURN_SELF_TYPE_HEADER SetUpdateFieldStandardDeviations ( std::vector<double> UpdateFieldStandardDeviations ) { this->m_UpdateFieldStandardDeviations = std::move(UpdateFieldStandardDeviations); return *this; }
137 
139  SITK_RETURN_SELF_TYPE_HEADER SetUpdateFieldStandardDeviations( double value ) { this->m_UpdateFieldStandardDeviations = std::vector<double>(3, value); return *this; }
140 
144  std::vector<double> GetUpdateFieldStandardDeviations() const { return this->m_UpdateFieldStandardDeviations; }\
145 
149  SITK_RETURN_SELF_TYPE_HEADER SetSmoothUpdateField ( bool SmoothUpdateField ) { this->m_SmoothUpdateField = SmoothUpdateField; return *this; }
150 
152  SITK_RETURN_SELF_TYPE_HEADER SmoothUpdateFieldOn() { return this->SetSmoothUpdateField(true); }
153  SITK_RETURN_SELF_TYPE_HEADER SmoothUpdateFieldOff() { return this->SetSmoothUpdateField(false); }
154 
158  bool GetSmoothUpdateField() const { return this->m_SmoothUpdateField; }\
159 
163  SITK_RETURN_SELF_TYPE_HEADER SetMaximumKernelWidth ( unsigned int MaximumKernelWidth ) { this->m_MaximumKernelWidth = MaximumKernelWidth; return *this; }
164 
168  unsigned int GetMaximumKernelWidth() const { return this->m_MaximumKernelWidth; }\
169 
173  SITK_RETURN_SELF_TYPE_HEADER SetMaximumError ( double MaximumError ) { this->m_MaximumError = MaximumError; return *this; }
174 
178  double GetMaximumError() const { return this->m_MaximumError; }\
179 
183  SITK_RETURN_SELF_TYPE_HEADER SetAlpha ( double Alpha ) { this->m_Alpha = Alpha; return *this; }
184 
187  double GetAlpha() const { return this->m_Alpha; }\
188 
192  SITK_RETURN_SELF_TYPE_HEADER SetIntensityDifferenceThreshold ( double IntensityDifferenceThreshold ) { this->m_IntensityDifferenceThreshold = IntensityDifferenceThreshold; return *this; }
193 
196  double GetIntensityDifferenceThreshold() const { return this->m_IntensityDifferenceThreshold; }\
197 
201  SITK_RETURN_SELF_TYPE_HEADER SetGradientMagnitudeThreshold ( double GradientMagnitudeThreshold ) { this->m_GradientMagnitudeThreshold = GradientMagnitudeThreshold; return *this; }
202 
205  double GetGradientMagnitudeThreshold() const { return this->m_GradientMagnitudeThreshold; }\
206 
209  SITK_RETURN_SELF_TYPE_HEADER SetUseImageSpacing ( bool UseImageSpacing ) { this->m_UseImageSpacing = UseImageSpacing; return *this; }
210 
212  SITK_RETURN_SELF_TYPE_HEADER UseImageSpacingOn() { return this->SetUseImageSpacing(true); }
213  SITK_RETURN_SELF_TYPE_HEADER UseImageSpacingOff() { return this->SetUseImageSpacing(false); }
214 
217  bool GetUseImageSpacing() const { return this->m_UseImageSpacing; }
224  uint32_t GetElapsedIterations() const { return this->m_ElapsedIterations; };
225 
232  double GetRMSChange() const { return this->m_RMSChange; };
233 
240  double GetMetric() const { return this->m_Metric; };
241 
242 
244  std::string GetName() const { return std::string ("LevelSetMotionRegistrationFilter"); }
245 
247  std::string ToString() const;
248 
249 
252  Image Execute ( const Image & fixedImage, const Image & movingImage, const Image & initialDisplacementField );
253  Image Execute ( const Image & fixedImage, const Image & movingImage );
254 
255  private:
256 
259  using MemberFunctionType = Image (Self::*)( const Image * fixedImage, const Image * movingImage, const Image * initialDisplacementField );
260  template <class TImageType> Image ExecuteInternal ( const Image * fixedImage, const Image * movingImage, const Image * initialDisplacementField );
261 
262 
264 
265  std::unique_ptr<detail::MemberFunctionFactory<MemberFunctionType> > m_MemberFactory;
266 
267 
268  double m_GradientSmoothingStandardDeviations{1.0};
269 
270  /* Number of iterations to run */
271  uint32_t m_NumberOfIterations{10u};
272 
273  /* Value of RMS change below which the filter should stop. This is a convergence criterion. */
274  double m_MaximumRMSError{0.02};
275 
276  std::vector<double> m_StandardDeviations{std::vector<double>(3, 1.0)};
277 
278  bool m_SmoothDisplacementField{false};
279 
280  std::vector<double> m_UpdateFieldStandardDeviations{std::vector<double>(3, 1.0)};
281 
282  bool m_SmoothUpdateField{false};
283 
284  unsigned int m_MaximumKernelWidth{30u};
285 
286  double m_MaximumError{0.1};
287 
288  double m_Alpha{0.1};
289 
290  double m_IntensityDifferenceThreshold{0.001};
291 
292  double m_GradientMagnitudeThreshold{1e-9};
293 
294  bool m_UseImageSpacing{true};
295 
296 
297  uint32_t m_ElapsedIterations{0};
298 
299  double m_RMSChange{0.0};
300 
301  double m_Metric{0.0};
302 
303 
304  };
305 
306 
307  }
308 }
309 #endif
itk::simple::Image
The Image class for SimpleITK.
Definition: sitkImage.h:76
itk::simple::LevelSetMotionRegistrationFilter::GetGradientSmoothingStandardDeviations
double GetGradientSmoothingStandardDeviations() const
Definition: sitkLevelSetMotionRegistrationFilter.h:88
sitkBasicFilters.h
itk::simple::LevelSetMotionRegistrationFilter::SmoothDisplacementFieldOn
Self & SmoothDisplacementFieldOn()
Definition: sitkLevelSetMotionRegistrationFilter.h:125
itk::simple::LevelSetMotionRegistrationFilter::SetIntensityDifferenceThreshold
Self & SetIntensityDifferenceThreshold(double IntensityDifferenceThreshold)
Definition: sitkLevelSetMotionRegistrationFilter.h:192
itk::simple::LevelSetMotionRegistrationFilter::SetUpdateFieldStandardDeviations
Self & SetUpdateFieldStandardDeviations(std::vector< double > UpdateFieldStandardDeviations)
Definition: sitkLevelSetMotionRegistrationFilter.h:136
itk::simple::detail::MemberFunctionAddressor
Definition: sitkDetail.h:32
itk::simple::LevelSetMotionRegistrationFilter::UseImageSpacingOff
Self & UseImageSpacingOff()
Definition: sitkLevelSetMotionRegistrationFilter.h:213
itk::simple::LevelSetMotionRegistrationFilter::SetAlpha
Self & SetAlpha(double Alpha)
Definition: sitkLevelSetMotionRegistrationFilter.h:183
itk::simple::LevelSetMotionRegistrationFilter::GetSmoothUpdateField
bool GetSmoothUpdateField() const
Definition: sitkLevelSetMotionRegistrationFilter.h:158
itk::simple::BasicPixelIDTypeList
typelist2::typelist< BasicPixelID< int8_t >, BasicPixelID< uint8_t >, BasicPixelID< int16_t >, BasicPixelID< uint16_t >, BasicPixelID< int32_t >, BasicPixelID< uint32_t >, BasicPixelID< float >, BasicPixelID< double > > BasicPixelIDTypeList
Definition: sitkPixelIDTypeLists.h:53
itk::simple::LevelSetMotionRegistrationFilter::SetMaximumKernelWidth
Self & SetMaximumKernelWidth(unsigned int MaximumKernelWidth)
Definition: sitkLevelSetMotionRegistrationFilter.h:163
itk::simple::LevelSetMotionRegistrationFilter::GetName
std::string GetName() const
Definition: sitkLevelSetMotionRegistrationFilter.h:244
itk::simple::LevelSetMotionRegistrationFilter::GetMetric
double GetMetric() const
Definition: sitkLevelSetMotionRegistrationFilter.h:240
itk::simple::LevelSetMotionRegistrationFilter::GetSmoothDisplacementField
bool GetSmoothDisplacementField() const
Definition: sitkLevelSetMotionRegistrationFilter.h:131
itk::simple::LevelSetMotionRegistrationFilter::GetMaximumError
double GetMaximumError() const
Definition: sitkLevelSetMotionRegistrationFilter.h:178
itk::simple::LevelSetMotionRegistrationFilter::SetUpdateFieldStandardDeviations
Self & SetUpdateFieldStandardDeviations(double value)
Definition: sitkLevelSetMotionRegistrationFilter.h:139
itk::simple::LevelSetMotionRegistrationFilter::SmoothUpdateFieldOn
Self & SmoothUpdateFieldOn()
Definition: sitkLevelSetMotionRegistrationFilter.h:152
sitkImageFilter.h
itk::simple::LevelSetMotionRegistrationFilter::SetSmoothDisplacementField
Self & SetSmoothDisplacementField(bool SmoothDisplacementField)
Definition: sitkLevelSetMotionRegistrationFilter.h:122
itk::simple::LevelSetMotionRegistrationFilter::SetStandardDeviations
Self & SetStandardDeviations(double value)
Definition: sitkLevelSetMotionRegistrationFilter.h:112
itk::simple::LevelSetMotionRegistrationFilter::PixelIDTypeList
BasicPixelIDTypeList PixelIDTypeList
Definition: sitkLevelSetMotionRegistrationFilter.h:78
itk::simple::LevelSetMotionRegistrationFilter::SetStandardDeviations
Self & SetStandardDeviations(std::vector< double > StandardDeviations)
Definition: sitkLevelSetMotionRegistrationFilter.h:109
itk::simple::LevelSetMotionRegistrationFilter
Deformably register two images using level set motion.
Definition: sitkLevelSetMotionRegistrationFilter.h:66
itk::simple::LevelSetMotionRegistrationFilter::GetRMSChange
double GetRMSChange() const
The Root Mean Square of the levelset upon termination.
Definition: sitkLevelSetMotionRegistrationFilter.h:232
itk::simple::LevelSetMotionRegistrationFilter::GetStandardDeviations
std::vector< double > GetStandardDeviations() const
Definition: sitkLevelSetMotionRegistrationFilter.h:117
itk::simple::LevelSetMotionRegistrationFilter::GetAlpha
double GetAlpha() const
Definition: sitkLevelSetMotionRegistrationFilter.h:187
itk::simple::LevelSetMotionRegistrationFilter::GetNumberOfIterations
uint32_t GetNumberOfIterations() const
Definition: sitkLevelSetMotionRegistrationFilter.h:96
SITKBasicFilters_EXPORT
#define SITKBasicFilters_EXPORT
Definition: sitkBasicFilters.h:52
itk::simple::LevelSetMotionRegistrationFilter::SetUseImageSpacing
Self & SetUseImageSpacing(bool UseImageSpacing)
Definition: sitkLevelSetMotionRegistrationFilter.h:209
itk::simple::LevelSetMotionRegistrationFilter::GetUpdateFieldStandardDeviations
std::vector< double > GetUpdateFieldStandardDeviations() const
Definition: sitkLevelSetMotionRegistrationFilter.h:144
itk::simple::LevelSetMotionRegistrationFilter::SetGradientMagnitudeThreshold
Self & SetGradientMagnitudeThreshold(double GradientMagnitudeThreshold)
Definition: sitkLevelSetMotionRegistrationFilter.h:201
itk::simple::LevelSetMotionRegistrationFilter::GetElapsedIterations
uint32_t GetElapsedIterations() const
Number of iterations run.
Definition: sitkLevelSetMotionRegistrationFilter.h:224
itk::simple::LevelSetMotionRegistrationFilter::SmoothDisplacementFieldOff
Self & SmoothDisplacementFieldOff()
Definition: sitkLevelSetMotionRegistrationFilter.h:126
itk
itk::simple::LevelSetMotionRegistrationFilter::SetGradientSmoothingStandardDeviations
Self & SetGradientSmoothingStandardDeviations(double GradientSmoothingStandardDeviations)
Definition: sitkLevelSetMotionRegistrationFilter.h:84
itk::simple::LevelSetMotionRegistrationFilter::SetMaximumRMSError
Self & SetMaximumRMSError(double MaximumRMSError)
Definition: sitkLevelSetMotionRegistrationFilter.h:100
itk::simple::LevelSetMotionRegistrationFilter::GetMaximumKernelWidth
unsigned int GetMaximumKernelWidth() const
Definition: sitkLevelSetMotionRegistrationFilter.h:168
itk::simple::LevelSetMotionRegistrationFilter::MemberFunctionType
Image(Self::*)(const Image *fixedImage, const Image *movingImage, const Image *initialDisplacementField) MemberFunctionType
Definition: sitkLevelSetMotionRegistrationFilter.h:259
itk::simple::ImageFilter
The base interface for SimpleITK filters that take one input image.
Definition: sitkImageFilter.h:36
itk::simple::LevelSetMotionRegistrationFilter::GetIntensityDifferenceThreshold
double GetIntensityDifferenceThreshold() const
Definition: sitkLevelSetMotionRegistrationFilter.h:196
itk::simple::LevelSetMotionRegistrationFilter::SmoothUpdateFieldOff
Self & SmoothUpdateFieldOff()
Definition: sitkLevelSetMotionRegistrationFilter.h:153
itk::simple::LevelSetMotionRegistrationFilter::GetGradientMagnitudeThreshold
double GetGradientMagnitudeThreshold() const
Definition: sitkLevelSetMotionRegistrationFilter.h:205
itk::simple::LevelSetMotionRegistrationFilter::m_MemberFactory
std::unique_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory
Definition: sitkLevelSetMotionRegistrationFilter.h:265
itk::simple::LevelSetMotionRegistrationFilter::SetSmoothUpdateField
Self & SetSmoothUpdateField(bool SmoothUpdateField)
Definition: sitkLevelSetMotionRegistrationFilter.h:149
itk::simple::LevelSetMotionRegistrationFilter::SetMaximumError
Self & SetMaximumError(double MaximumError)
Definition: sitkLevelSetMotionRegistrationFilter.h:173
itk::simple::LevelSetMotionRegistrationFilter::GetMaximumRMSError
double GetMaximumRMSError() const
Definition: sitkLevelSetMotionRegistrationFilter.h:104
itk::simple::LevelSetMotionRegistrationFilter::GetUseImageSpacing
bool GetUseImageSpacing() const
Definition: sitkLevelSetMotionRegistrationFilter.h:217
itk::simple::LevelSetMotionRegistrationFilter::SetNumberOfIterations
Self & SetNumberOfIterations(uint32_t NumberOfIterations)
Definition: sitkLevelSetMotionRegistrationFilter.h:92
itk::simple::LevelSetMotionRegistrationFilter::UseImageSpacingOn
Self & UseImageSpacingOn()
Definition: sitkLevelSetMotionRegistrationFilter.h:212