18 #ifndef sitkRenyiEntropyThresholdImageFilter_h
19 #define sitkRenyiEntropyThresholdImageFilter_h
71 SITK_RETURN_SELF_TYPE_HEADER
SetInsideValue ( uint8_t InsideValue ) { this->m_InsideValue = InsideValue;
return *
this; }
83 SITK_RETURN_SELF_TYPE_HEADER
SetOutsideValue ( uint8_t OutsideValue ) { this->m_OutsideValue = OutsideValue;
return *
this; }
95 SITK_RETURN_SELF_TYPE_HEADER
SetNumberOfHistogramBins ( uint32_t NumberOfHistogramBins ) { this->m_NumberOfHistogramBins = NumberOfHistogramBins;
return *
this; }
104 SITK_RETURN_SELF_TYPE_HEADER
SetMaskOutput (
bool MaskOutput ) { this->m_MaskOutput = MaskOutput;
return *
this; }
107 SITK_RETURN_SELF_TYPE_HEADER
MaskOutputOn() {
return this->SetMaskOutput(
true); }
108 SITK_RETURN_SELF_TYPE_HEADER
MaskOutputOff() {
return this->SetMaskOutput(
false); }
117 SITK_RETURN_SELF_TYPE_HEADER
SetMaskValue ( uint8_t MaskValue ) { this->m_MaskValue = MaskValue;
return *
this; }
132 std::string
GetName()
const {
return std::string (
"RenyiEntropyThresholdImageFilter"); }
135 std::string ToString()
const;
148 template <
class TImageType>
Image ExecuteInternal (
const Image * image,
const Image * maskImage );
156 uint8_t m_InsideValue{1u};
158 uint8_t m_OutsideValue{0u};
160 uint32_t m_NumberOfHistogramBins{256u};
162 bool m_MaskOutput{
true};
164 uint8_t m_MaskValue{255u};
167 double m_Threshold{0.0};