18 #ifndef sitkVotingBinaryIterativeHoleFillingImageFilter_h
19 #define sitkVotingBinaryIterativeHoleFillingImageFilter_h
79 SITK_RETURN_SELF_TYPE_HEADER
SetRadius ( std::vector<unsigned int> Radius ) { this->m_Radius = std::move(Radius);
return *
this; }
82 SITK_RETURN_SELF_TYPE_HEADER
SetRadius(
unsigned int value ) { this->m_Radius = std::vector<unsigned int>(3, value);
return *
this; }
87 std::vector<unsigned int>
GetRadius()
const {
return this->m_Radius; }\
92 SITK_RETURN_SELF_TYPE_HEADER
SetMaximumNumberOfIterations (
unsigned int MaximumNumberOfIterations ) { this->m_MaximumNumberOfIterations = MaximumNumberOfIterations;
return *
this; }
102 SITK_RETURN_SELF_TYPE_HEADER
SetMajorityThreshold (
unsigned int MajorityThreshold ) { this->m_MajorityThreshold = MajorityThreshold;
return *
this; }
112 SITK_RETURN_SELF_TYPE_HEADER
SetForegroundValue (
double ForegroundValue ) { this->m_ForegroundValue = ForegroundValue;
return *
this; }
122 SITK_RETURN_SELF_TYPE_HEADER
SetBackgroundValue (
double BackgroundValue ) { this->m_BackgroundValue = BackgroundValue;
return *
this; }
130 std::string
GetName()
const {
return std::string (
"VotingBinaryIterativeHoleFillingImageFilter"); }
133 std::string ToString()
const;
145 template <
class TImageType>
Image ExecuteInternal (
const Image& image1 );
154 std::vector<unsigned int> m_Radius{std::vector<unsigned int>(3, 1)};
156 unsigned int m_MaximumNumberOfIterations{10u};
158 unsigned int m_MajorityThreshold{1u};
160 double m_ForegroundValue{1.0};
162 double m_BackgroundValue{0.0};