Go to the documentation of this file.
18 #ifndef sitkDivideImageFilter_h
19 #define sitkDivideImageFilter_h
60 typedef typelist::Append<BasicPixelIDTypeList, ComplexPixelIDTypeList>::Type
PixelIDTypeList;
64 std::string
GetName()
const {
return std::string (
"DivideImageFilter"); }
67 std::string ToString()
const;
75 Image Execute (
const Image& image1,
double constant );
76 Image Execute (
double constant,
const Image& image2 );
84 template <
class TImageType>
Image ExecuteInternal (
const Image& image1,
const Image& image2 );
89 nsstd::auto_ptr<detail::MemberFunctionFactory<MemberFunctionType> >
m_MemberFactory;
90 typedef Image (
Self::*MemberFunction1Type)(
double constant,
const Image& image2 );
91 template <
class TImageType>
Image ExecuteInternal (
double constant,
const Image& image2 );
95 typedef Image (
Self::*MemberFunction2Type)(
const Image& image1,
double constant );
96 template <
class TImageType>
Image ExecuteInternal (
const Image& image1,
double constant );
The main Image class for SimpleITK.
nsstd::auto_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory
nsstd::auto_ptr< detail::MemberFunctionFactory< MemberFunction1Type > > m_MemberFactory1
Image Divide(const Image &image1, const Image &image2)
Pixel-wise division of two images.
typelist::Append< BasicPixelIDTypeList, ComplexPixelIDTypeList >::Type PixelIDTypeList
#define SITKBasicFilters_EXPORT
std::string GetName() const
Pixel-wise division of two images.
The base interface for SimpleITK filters that take one input image.
Base class for SimpleITK classes based on ProcessObject.
nsstd::auto_ptr< detail::MemberFunctionFactory< MemberFunction2Type > > m_MemberFactory2