18 #ifndef sitkSignedMaurerDistanceMapImageFilter_h
19 #define sitkSignedMaurerDistanceMapImageFilter_h
70 SITK_RETURN_SELF_TYPE_HEADER
SetInsideIsPositive (
bool InsideIsPositive ) { this->m_InsideIsPositive = InsideIsPositive;
return *
this; }
84 SITK_RETURN_SELF_TYPE_HEADER
SetSquaredDistance (
bool SquaredDistance ) { this->m_SquaredDistance = SquaredDistance;
return *
this; }
98 SITK_RETURN_SELF_TYPE_HEADER
SetUseImageSpacing (
bool UseImageSpacing ) { this->m_UseImageSpacing = UseImageSpacing;
return *
this; }
112 SITK_RETURN_SELF_TYPE_HEADER
SetBackgroundValue (
double BackgroundValue ) { this->m_BackgroundValue = BackgroundValue;
return *
this; }
120 std::string
GetName()
const {
return std::string (
"SignedMaurerDistanceMapImageFilter"); }
123 std::string ToString()
const;
135 template <
class TImageType>
Image ExecuteInternal (
const Image& image1 );
143 bool m_InsideIsPositive{
false};
145 bool m_SquaredDistance{
true};
147 bool m_UseImageSpacing{
false};
149 double m_BackgroundValue{0.0};