18 #ifndef sitkGeodesicActiveContourLevelSetImageFilter_h
19 #define sitkGeodesicActiveContourLevelSetImageFilter_h
111 SITK_RETURN_SELF_TYPE_HEADER
SetMaximumRMSError (
double MaximumRMSError ) { this->m_MaximumRMSError = MaximumRMSError;
return *
this; }
119 SITK_RETURN_SELF_TYPE_HEADER
SetPropagationScaling (
double PropagationScaling ) { this->m_PropagationScaling = PropagationScaling;
return *
this; }
127 SITK_RETURN_SELF_TYPE_HEADER
SetCurvatureScaling (
double CurvatureScaling ) { this->m_CurvatureScaling = CurvatureScaling;
return *
this; }
135 SITK_RETURN_SELF_TYPE_HEADER
SetAdvectionScaling (
double AdvectionScaling ) { this->m_AdvectionScaling = AdvectionScaling;
return *
this; }
151 SITK_RETURN_SELF_TYPE_HEADER
SetReverseExpansionDirection (
bool ReverseExpansionDirection ) { this->m_ReverseExpansionDirection = ReverseExpansionDirection;
return *
this; }
178 std::string
GetName()
const {
return std::string (
"GeodesicActiveContourLevelSetImageFilter"); }
181 std::string ToString()
const;
188 Image Execute (
const Image & initialImage,
const Image & featureImage );
195 template <
class TImageType>
Image ExecuteInternal (
const Image * initialImage,
const Image * featureImage );
204 double m_MaximumRMSError{0.01};
207 double m_PropagationScaling{1.0};
210 double m_CurvatureScaling{1.0};
213 double m_AdvectionScaling{1.0};
219 bool m_ReverseExpansionDirection{
false};
224 double m_RMSChange{0.0};
227 bool m_InPlace{
false};