Go to the documentation of this file.
18 #ifndef sitkPowImageFilter_h
19 #define sitkPowImageFilter_h
81 typedef typelist::Append<BasicPixelIDTypeList, ComplexPixelIDTypeList>::Type
PixelIDTypeList;
85 std::string
GetName()
const {
return std::string (
"PowImageFilter"); }
88 std::string ToString()
const;
96 Image Execute (
const Image& image1,
double constant );
97 Image Execute (
double constant,
const Image& image2 );
105 template <
class TImageType>
Image ExecuteInternal (
const Image& image1,
const Image& image2 );
111 typedef Image (
Self::*MemberFunction1Type)(
double constant,
const Image& image2 );
112 template <
class TImageType>
Image ExecuteInternal (
double constant,
const Image& image2 );
116 typedef Image (
Self::*MemberFunction2Type)(
const Image& image1,
double constant );
117 template <
class TImageType>
Image ExecuteInternal (
const Image& image1,
double constant );
nsstd::auto_ptr< detail::MemberFunctionFactory< MemberFunction1Type > > m_MemberFactory1
The main Image class for SimpleITK.
nsstd::auto_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory
typelist::Append< BasicPixelIDTypeList, ComplexPixelIDTypeList >::Type PixelIDTypeList
std::string GetName() const
#define SITKBasicFilters_EXPORT
The base interface for SimpleITK filters that take one input image.
Base class for SimpleITK classes based on ProcessObject.
Computes the powers of 2 images.
nsstd::auto_ptr< detail::MemberFunctionFactory< MemberFunction2Type > > m_MemberFactory2
Image Pow(const Image &image1, const Image &image2)
Computes the powers of 2 images.