18 #ifndef sitkVotingBinaryHoleFillingImageFilter_h
19 #define sitkVotingBinaryHoleFillingImageFilter_h
74 SITK_RETURN_SELF_TYPE_HEADER
SetRadius ( std::vector<unsigned int> Radius ) { this->m_Radius = std::move(Radius);
return *
this; }
77 SITK_RETURN_SELF_TYPE_HEADER
SetRadius(
unsigned int value ) { this->m_Radius = std::vector<unsigned int>(3, value);
return *
this; }
81 std::vector<unsigned int>
GetRadius()
const {
return this->m_Radius; }\
86 SITK_RETURN_SELF_TYPE_HEADER
SetMajorityThreshold (
unsigned int MajorityThreshold ) { this->m_MajorityThreshold = MajorityThreshold;
return *
this; }
95 SITK_RETURN_SELF_TYPE_HEADER
SetForegroundValue (
double ForegroundValue ) { this->m_ForegroundValue = ForegroundValue;
return *
this; }
103 SITK_RETURN_SELF_TYPE_HEADER
SetBackgroundValue (
double BackgroundValue ) { this->m_BackgroundValue = BackgroundValue;
return *
this; }
110 std::string
GetName()
const {
return std::string (
"VotingBinaryHoleFillingImageFilter"); }
113 std::string ToString()
const;
125 template <
class TImageType>
Image ExecuteInternal (
const Image& image1 );
134 std::vector<unsigned int> m_Radius{std::vector<unsigned int>(3, 1)};
136 unsigned int m_MajorityThreshold{1u};
138 double m_ForegroundValue{1.0};
140 double m_BackgroundValue{0.0};