18 #ifndef sitkLevelSetMotionRegistrationFilter_h
19 #define sitkLevelSetMotionRegistrationFilter_h
84 SITK_RETURN_SELF_TYPE_HEADER
SetGradientSmoothingStandardDeviations (
double GradientSmoothingStandardDeviations ) { this->m_GradientSmoothingStandardDeviations = GradientSmoothingStandardDeviations;
return *
this; }
92 SITK_RETURN_SELF_TYPE_HEADER
SetNumberOfIterations ( uint32_t NumberOfIterations ) { this->m_NumberOfIterations = NumberOfIterations;
return *
this; }
100 SITK_RETURN_SELF_TYPE_HEADER
SetMaximumRMSError (
double MaximumRMSError ) { this->m_MaximumRMSError = MaximumRMSError;
return *
this; }
109 SITK_RETURN_SELF_TYPE_HEADER
SetStandardDeviations ( std::vector<double> StandardDeviations ) { this->m_StandardDeviations = std::move(StandardDeviations);
return *
this; }
112 SITK_RETURN_SELF_TYPE_HEADER
SetStandardDeviations(
double value ) { this->m_StandardDeviations = std::vector<double>(3, value);
return *
this; }
122 SITK_RETURN_SELF_TYPE_HEADER
SetSmoothDisplacementField (
bool SmoothDisplacementField ) { this->m_SmoothDisplacementField = SmoothDisplacementField;
return *
this; }
136 SITK_RETURN_SELF_TYPE_HEADER
SetUpdateFieldStandardDeviations ( std::vector<double> UpdateFieldStandardDeviations ) { this->m_UpdateFieldStandardDeviations = std::move(UpdateFieldStandardDeviations);
return *
this; }
149 SITK_RETURN_SELF_TYPE_HEADER
SetSmoothUpdateField (
bool SmoothUpdateField ) { this->m_SmoothUpdateField = SmoothUpdateField;
return *
this; }
163 SITK_RETURN_SELF_TYPE_HEADER
SetMaximumKernelWidth (
unsigned int MaximumKernelWidth ) { this->m_MaximumKernelWidth = MaximumKernelWidth;
return *
this; }
173 SITK_RETURN_SELF_TYPE_HEADER
SetMaximumError (
double MaximumError ) { this->m_MaximumError = MaximumError;
return *
this; }
183 SITK_RETURN_SELF_TYPE_HEADER
SetAlpha (
double Alpha ) { this->m_Alpha = Alpha;
return *
this; }
192 SITK_RETURN_SELF_TYPE_HEADER
SetIntensityDifferenceThreshold (
double IntensityDifferenceThreshold ) { this->m_IntensityDifferenceThreshold = IntensityDifferenceThreshold;
return *
this; }
201 SITK_RETURN_SELF_TYPE_HEADER
SetGradientMagnitudeThreshold (
double GradientMagnitudeThreshold ) { this->m_GradientMagnitudeThreshold = GradientMagnitudeThreshold;
return *
this; }
209 SITK_RETURN_SELF_TYPE_HEADER
SetUseImageSpacing (
bool UseImageSpacing ) { this->m_UseImageSpacing = UseImageSpacing;
return *
this; }
244 std::string
GetName()
const {
return std::string (
"LevelSetMotionRegistrationFilter"); }
247 std::string ToString()
const;
252 Image Execute (
const Image & fixedImage,
const Image & movingImage,
const Image & initialDisplacementField );
260 template <
class TImageType>
Image ExecuteInternal (
const Image * fixedImage,
const Image * movingImage,
const Image * initialDisplacementField );
268 double m_GradientSmoothingStandardDeviations{1.0};
271 uint32_t m_NumberOfIterations{10u};
274 double m_MaximumRMSError{0.02};
276 std::vector<double> m_StandardDeviations{std::vector<double>(3, 1.0)};
278 bool m_SmoothDisplacementField{
false};
280 std::vector<double> m_UpdateFieldStandardDeviations{std::vector<double>(3, 1.0)};
282 bool m_SmoothUpdateField{
false};
284 unsigned int m_MaximumKernelWidth{30u};
286 double m_MaximumError{0.1};
290 double m_IntensityDifferenceThreshold{0.001};
292 double m_GradientMagnitudeThreshold{1e-9};
294 bool m_UseImageSpacing{
true};
297 uint32_t m_ElapsedIterations{0};
299 double m_RMSChange{0.0};
301 double m_Metric{0.0};