Go to the documentation of this file.
18 #ifndef sitkLessImageFilter_h
19 #define sitkLessImageFilter_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 (
"LessImageFilter"); }
97 std::string ToString()
const;
108 Image Execute (
const Image& image1,
double constant );
109 Image Execute (
double constant,
const Image& image2 );
119 template <
class TImageType>
Image ExecuteInternal (
const Image& image1,
const Image& image2 );
125 typedef Image (
Self::*MemberFunction1Type)(
double constant,
const Image& image2 );
126 template <
class TImageType>
Image ExecuteInternal (
double constant,
const Image& image2 );
130 typedef Image (
Self::*MemberFunction2Type)(
const Image& image1,
double constant );
131 template <
class TImageType>
Image ExecuteInternal (
const Image& image1,
double constant );
The main Image class for SimpleITK.
nsstd::auto_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory
uint8_t m_BackgroundValue
Self & SetForegroundValue(uint8_t ForegroundValue)
uint8_t m_ForegroundValue
std::string GetName() const
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
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.
Implements pixel-wise generic operation of two images, or of an image and a constant.
nsstd::auto_ptr< detail::MemberFunctionFactory< MemberFunction2Type > > m_MemberFactory2
uint8_t GetForegroundValue() const
#define SITKBasicFilters_EXPORT
uint8_t GetBackgroundValue() const
The base interface for SimpleITK filters that take one input image.
Base class for SimpleITK classes based on ProcessObject.
Self & SetBackgroundValue(uint8_t BackgroundValue)
BasicPixelIDTypeList PixelIDTypeList
nsstd::auto_ptr< detail::MemberFunctionFactory< MemberFunction1Type > > m_MemberFactory1