18 #ifndef sitkLessImageFilter_h
19 #define sitkLessImageFilter_h
66 SITK_RETURN_SELF_TYPE_HEADER
SetBackgroundValue (
uint8_t BackgroundValue ) { this->m_BackgroundValue = BackgroundValue;
return *
this; }
78 SITK_RETURN_SELF_TYPE_HEADER
SetForegroundValue (
uint8_t ForegroundValue ) { this->m_ForegroundValue = ForegroundValue;
return *
this; }
86 std::string
GetName()
const {
return std::string (
"LessImageFilter"); }
89 std::string ToString()
const;
100 Image Execute (
const Image& image1,
double constant );
101 Image Execute (
double constant,
const Image& image2 );
110 typedef Image (Self::*MemberFunctionType)(
const Image& image1,
const Image& image2 );
111 template <
class TImageType>
Image ExecuteInternal (
const Image& image1,
const Image& image2 );
117 typedef Image (Self::*MemberFunction1Type)(
double constant,
const Image& image2 );
118 template <
class TImageType>
Image ExecuteInternal (
double constant,
const Image& image2 );
122 typedef Image (Self::*MemberFunction2Type)(
const Image& image1,
double constant );
123 template <
class TImageType>
Image ExecuteInternal (
const Image& image1,
double constant );
uint8_t m_BackgroundValue
#define SITKBasicFilters_EXPORT
BasicPixelIDTypeList PixelIDTypeList
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)
Image Less(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 GetBackgroundValue() const
nsstd::auto_ptr< detail::MemberFunctionFactory< MemberFunction2Type > > m_MemberFactory2
Self & SetBackgroundValue(uint8_t BackgroundValue)
nsstd::auto_ptr< detail::MemberFunctionFactory< MemberFunction1Type > > m_MemberFactory1
Implements pixel-wise generic operation of two images, or of an image and a constant.
nsstd::auto_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory
The Image class for SimpleITK.
std::string GetName() const
The base interface for SimpleITK filters that take one input image.
uint8_t GetForegroundValue() const
uint8_t m_ForegroundValue