Go to the documentation of this file.
18 #ifndef sitkAddImageFilter_h
19 #define sitkAddImageFilter_h
106 std::string
GetName()
const {
return std::string (
"AddImageFilter"); }
109 std::string ToString()
const;
117 Image Execute (
const Image& image1,
double constant );
118 Image Execute (
double constant,
const Image& image2 );
126 template <
class TImageType>
Image ExecuteInternal (
const Image& image1,
const Image& image2 );
132 typedef Image (
Self::*MemberFunction1Type)(
double constant,
const Image& image2 );
133 template <
class TImageType>
Image ExecuteInternal (
double constant,
const Image& image2 );
137 typedef Image (
Self::*MemberFunction2Type)(
const Image& image1,
double constant );
138 template <
class TImageType>
Image ExecuteInternal (
const Image& image1,
double constant );
The main Image class for SimpleITK.
Pixel-wise addition of two images.
nsstd::auto_ptr< detail::MemberFunctionFactory< MemberFunction1Type > > m_MemberFactory1
std::string GetName() const
NonLabelPixelIDTypeList PixelIDTypeList
typelist::Append< typelist::Append< BasicPixelIDTypeList, ComplexPixelIDTypeList >::Type, VectorPixelIDTypeList >::Type NonLabelPixelIDTypeList
nsstd::auto_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory
Image Add(const Image &image1, const Image &image2)
Pixel-wise addition of two images.
#define SITKBasicFilters_EXPORT
nsstd::auto_ptr< detail::MemberFunctionFactory< MemberFunction2Type > > m_MemberFactory2
The base interface for SimpleITK filters that take one input image.
Base class for SimpleITK classes based on ProcessObject.