18 #ifndef sitkSignedMaurerDistanceMapImageFilter_h
19 #define sitkSignedMaurerDistanceMapImageFilter_h
71 SITK_RETURN_SELF_TYPE_HEADER
SetInsideIsPositive (
bool InsideIsPositive ) { this->m_InsideIsPositive = InsideIsPositive;
return *
this; }
85 SITK_RETURN_SELF_TYPE_HEADER
SetSquaredDistance (
bool SquaredDistance ) { this->m_SquaredDistance = SquaredDistance;
return *
this; }
99 SITK_RETURN_SELF_TYPE_HEADER
SetUseImageSpacing (
bool UseImageSpacing ) { this->m_UseImageSpacing = UseImageSpacing;
return *
this; }
113 SITK_RETURN_SELF_TYPE_HEADER
SetBackgroundValue (
double BackgroundValue ) { this->m_BackgroundValue = BackgroundValue;
return *
this; }
121 std::string
GetName()
const {
return std::string (
"SignedMaurerDistanceMapImageFilter"); }
124 std::string ToString()
const;
136 template <
class TImageType>
Image ExecuteInternal (
const Image& image1 );
144 bool m_InsideIsPositive{
false};
146 bool m_SquaredDistance{
true};
148 bool m_UseImageSpacing{
false};
150 double m_BackgroundValue{0.0};