18 #ifndef sitkMomentsThresholdImageFilter_h
19 #define sitkMomentsThresholdImageFilter_h
70 SITK_RETURN_SELF_TYPE_HEADER
SetInsideValue (
uint8_t InsideValue ) { this->m_InsideValue = InsideValue;
return *
this; }
82 SITK_RETURN_SELF_TYPE_HEADER
SetOutsideValue (
uint8_t OutsideValue ) { this->m_OutsideValue = OutsideValue;
return *
this; }
103 SITK_RETURN_SELF_TYPE_HEADER
SetMaskOutput (
bool MaskOutput ) { this->m_MaskOutput = MaskOutput;
return *
this; }
106 SITK_RETURN_SELF_TYPE_HEADER
MaskOutputOn() {
return this->SetMaskOutput(
true); }
107 SITK_RETURN_SELF_TYPE_HEADER
MaskOutputOff() {
return this->SetMaskOutput(
false); }
116 SITK_RETURN_SELF_TYPE_HEADER
SetMaskValue (
uint8_t MaskValue ) { this->m_MaskValue = MaskValue;
return *
this; }
130 std::string
GetName()
const {
return std::string (
"MomentsThresholdImageFilter"); }
133 std::string ToString()
const;
149 typedef Image (Self::*MemberFunctionType)(
const Image * image,
const Image * maskImage );
150 template <
class TImageType>
Image ExecuteInternal (
const Image * image,
const Image * maskImage );
Self & SetNumberOfHistogramBins(uint32_t NumberOfHistogramBins)
Threshold an image using the Moments Threshold.
uint8_t GetMaskValue() const
#define SITKBasicFilters_EXPORT
typelist::MakeTypeList< BasicPixelID< int8_t >, BasicPixelID< uint8_t >, BasicPixelID< int16_t >, BasicPixelID< uint16_t >, BasicPixelID< int32_t >, BasicPixelID< uint32_t >, BasicPixelID< float >, BasicPixelID< double > >::Type BasicPixelIDTypeList
Self & SetOutsideValue(uint8_t OutsideValue)
uint32_t m_NumberOfHistogramBins
double GetThreshold() const
Get the computed threshold.
uint8_t GetOutsideValue() const
uint8_t GetInsideValue() const
nsstd::auto_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory
uint32_t GetNumberOfHistogramBins() const
BasicPixelIDTypeList PixelIDTypeList
bool GetMaskOutput() const
The Image class for SimpleITK.
Self & SetMaskOutput(bool MaskOutput)
Self & SetInsideValue(uint8_t InsideValue)
Self & SetMaskValue(uint8_t MaskValue)
MomentsThresholdImageFilter Self
std::string GetName() const
The base interface for SimpleITK filters that take one input image.
Image MomentsThreshold(const Image &image, const Image &maskImage, uint8_t insideValue=1u, uint8_t outsideValue=0u, uint32_t numberOfHistogramBins=256u, bool maskOutput=true, uint8_t maskValue=255u)
Threshold an image using the Moments Threshold.