18 #ifndef __itkPowImageFilter_h
19 #define __itkPowImageFilter_h
33 template<
class TInput1,
class TInput2 = TInput1,
class TOutput = TInput1 >
48 return !( *
this != other );
51 inline TOutput
operator()(
const TInput1 & A,
const TInput2 & B)
const
55 return static_cast< TOutput
>( vcl_pow(static_cast<RealType>(A),static_cast<RealType>(B)) );
91 template<
class TInputImage1,
class TInputImage2 = TInputImage1,
class TOutputImage = TInputImage1 >
96 typename TInputImage1::PixelType,
97 typename TInputImage2::PixelType,
98 typename TOutputImage::PixelType > >
106 typename TInputImage1::PixelType,
107 typename TInputImage2::PixelType,
120 #ifdef ITK_USE_CONCEPT_CHECKING
130 void operator=(
const Self &);