18 #ifndef sitkBinaryThresholdImageFilter_h
19 #define sitkBinaryThresholdImageFilter_h
67 SITK_RETURN_SELF_TYPE_HEADER
SetLowerThreshold (
double LowerThreshold ) { this->m_LowerThreshold = LowerThreshold;
return *
this; }
76 SITK_RETURN_SELF_TYPE_HEADER
SetUpperThreshold (
double UpperThreshold ) { this->m_UpperThreshold = UpperThreshold;
return *
this; }
86 SITK_RETURN_SELF_TYPE_HEADER
SetInsideValue ( uint8_t InsideValue ) { this->m_InsideValue = InsideValue;
return *
this; }
96 SITK_RETURN_SELF_TYPE_HEADER
SetOutsideValue ( uint8_t OutsideValue ) { this->m_OutsideValue = OutsideValue;
return *
this; }
104 std::string
GetName()
const {
return std::string (
"BinaryThresholdImageFilter"); }
107 std::string ToString()
const;
121 template <
class TImageType>
Image ExecuteInternal (
const Image& image1 );
129 double m_LowerThreshold{0.0};
131 double m_UpperThreshold{255.0};
133 uint8_t m_InsideValue{1u};
135 uint8_t m_OutsideValue{0u};
138 bool m_InPlace{
false};