18 #ifndef sitkGreaterImageFilter_h
19 #define sitkGreaterImageFilter_h
74 SITK_RETURN_SELF_TYPE_HEADER
SetBackgroundValue (
uint8_t BackgroundValue ) { this->m_BackgroundValue = BackgroundValue;
return *
this; }
86 SITK_RETURN_SELF_TYPE_HEADER
SetForegroundValue (
uint8_t ForegroundValue ) { this->m_ForegroundValue = ForegroundValue;
return *
this; }
94 std::string
GetName()
const {
return std::string (
"GreaterImageFilter"); }
97 std::string ToString()
const;
109 Image Execute (
const Image& image1,
double constant );
110 Image Execute (
double constant,
const Image& image2 );
120 typedef Image (Self::*MemberFunctionType)(
const Image& image1,
const Image& image2 );
121 template <
class TImageType>
Image ExecuteInternal (
const Image& image1,
const Image& image2 );
128 typedef Image (Self::*MemberFunction1Type)(
double constant,
const Image& image2 );
129 template <
class TImageType>
Image ExecuteInternal (
double constant,
const Image& image2 );
133 typedef Image (Self::*MemberFunction2Type)(
const Image& image1,
double constant );
134 template <
class TImageType>
Image ExecuteInternal (
const Image& image1,
double constant );
uint8_t m_ForegroundValue
std::string GetName() 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 & SetForegroundValue(uint8_t ForegroundValue)
nsstd::auto_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory
BasicPixelIDTypeList PixelIDTypeList
Image Greater(const Image &image1, const Image &image2, uint8_t backgroundValue=0u, uint8_t foregroundValue=1u)
Implements pixel-wise generic operation of two images, or of an image and a constant.
uint8_t m_BackgroundValue
Implements pixel-wise generic operation of two images, or of an image and a constant.
Self & SetBackgroundValue(uint8_t BackgroundValue)
The main Image class for SimpleITK.
nsstd::auto_ptr< detail::MemberFunctionFactory< MemberFunction1Type > > m_MemberFactory1
uint8_t GetForegroundValue() const
nsstd::auto_ptr< detail::MemberFunctionFactory< MemberFunction2Type > > m_MemberFactory2
The base interface for SimpleITK filters that take one input image.
uint8_t GetBackgroundValue() const