Go to the documentation of this file.
18 #ifndef sitkMultiplyImageFilter_h
19 #define sitkMultiplyImageFilter_h
62 typedef typelist::Append<BasicPixelIDTypeList, ComplexPixelIDTypeList>::Type
PixelIDTypeList;
66 std::string
GetName()
const {
return std::string (
"MultiplyImageFilter"); }
69 std::string ToString()
const;
77 Image Execute (
const Image& image1,
double constant );
78 Image Execute (
double constant,
const Image& image2 );
86 template <
class TImageType>
Image ExecuteInternal (
const Image& image1,
const Image& image2 );
91 nsstd::auto_ptr<detail::MemberFunctionFactory<MemberFunctionType> >
m_MemberFactory;
92 typedef Image (
Self::*MemberFunction1Type)(
double constant,
const Image& image2 );
93 template <
class TImageType>
Image ExecuteInternal (
double constant,
const Image& image2 );
97 typedef Image (
Self::*MemberFunction2Type)(
const Image& image1,
double constant );
98 template <
class TImageType>
Image ExecuteInternal (
const Image& image1,
double constant );
The main Image class for SimpleITK.
typelist::Append< BasicPixelIDTypeList, ComplexPixelIDTypeList >::Type PixelIDTypeList
nsstd::auto_ptr< detail::MemberFunctionFactory< MemberFunction2Type > > m_MemberFactory2
Pixel-wise multiplication of two images.
#define SITKBasicFilters_EXPORT
nsstd::auto_ptr< detail::MemberFunctionFactory< MemberFunction1Type > > m_MemberFactory1
std::string GetName() const
The base interface for SimpleITK filters that take one input image.
Base class for SimpleITK classes based on ProcessObject.
Image Multiply(const Image &image1, const Image &image2)
Pixel-wise multiplication of two images.
nsstd::auto_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory