Go to the documentation of this file.
18 #ifndef sitkSquaredDifferenceImageFilter_h
19 #define sitkSquaredDifferenceImageFilter_h
85 std::string
GetName()
const {
return std::string (
"SquaredDifferenceImageFilter"); }
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 );
The main Image class for SimpleITK.
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
SquaredDifferenceImageFilter Self
nsstd::auto_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory
#define SITKBasicFilters_EXPORT
BasicPixelIDTypeList PixelIDTypeList
nsstd::auto_ptr< detail::MemberFunctionFactory< MemberFunction1Type > > m_MemberFactory1
std::string GetName() const
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.
Image SquaredDifference(const Image &image1, const Image &image2)
Implements pixel-wise the computation of squared difference.
Implements pixel-wise the computation of squared difference.