18 #ifndef sitkBinaryOpeningByReconstructionImageFilter_h
19 #define sitkBinaryOpeningByReconstructionImageFilter_h
69 SITK_RETURN_SELF_TYPE_HEADER
SetKernelRadius ( std::vector<unsigned int> KernelRadius ) { this->m_KernelRadius = std::move(KernelRadius);
return *
this; }
72 SITK_RETURN_SELF_TYPE_HEADER
SetKernelRadius(
unsigned int value ) { this->m_KernelRadius = std::vector<unsigned int>(3, value);
return *
this; }
77 std::vector<unsigned int>
GetKernelRadius()
const {
return this->m_KernelRadius; }\
92 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; }
112 SITK_RETURN_SELF_TYPE_HEADER
SetFullyConnected (
bool FullyConnected ) { this->m_FullyConnected = FullyConnected;
return *
this; }
124 std::string
GetName()
const {
return std::string (
"BinaryOpeningByReconstructionImageFilter"); }
127 std::string ToString()
const;
139 template <
class TImageType>
Image ExecuteInternal (
const Image& image1 );
148 std::vector<unsigned int> m_KernelRadius{std::vector<uint32_t>(3, 1)};
152 double m_ForegroundValue{1.0};
154 double m_BackgroundValue{0.0};
157 bool m_FullyConnected{
false};