18 #ifndef sitkVotingBinaryHoleFillingImageFilter_h
19 #define sitkVotingBinaryHoleFillingImageFilter_h
73 SITK_RETURN_SELF_TYPE_HEADER
SetRadius ( std::vector<unsigned int> Radius ) { this->m_Radius = std::move(Radius);
return *
this; }
76 SITK_RETURN_SELF_TYPE_HEADER
SetRadius(
unsigned int value ) { this->m_Radius = std::vector<unsigned int>(3, value);
return *
this; }
80 std::vector<unsigned int>
GetRadius()
const {
return this->m_Radius; }\
85 SITK_RETURN_SELF_TYPE_HEADER
SetMajorityThreshold (
unsigned int MajorityThreshold ) { this->m_MajorityThreshold = MajorityThreshold;
return *
this; }
94 SITK_RETURN_SELF_TYPE_HEADER
SetForegroundValue (
double ForegroundValue ) { this->m_ForegroundValue = ForegroundValue;
return *
this; }
102 SITK_RETURN_SELF_TYPE_HEADER
SetBackgroundValue (
double BackgroundValue ) { this->m_BackgroundValue = BackgroundValue;
return *
this; }
109 std::string
GetName()
const {
return std::string (
"VotingBinaryHoleFillingImageFilter"); }
112 std::string ToString()
const;
124 template <
class TImageType>
Image ExecuteInternal (
const Image& image1 );
133 std::vector<unsigned int> m_Radius{std::vector<unsigned int>(3, 1)};
135 unsigned int m_MajorityThreshold{1u};
137 double m_ForegroundValue{1.0};
139 double m_BackgroundValue{0.0};