18 #ifndef __itkMultiplyImageFilter_h
19 #define __itkMultiplyImageFilter_h
32 template<
class TInput1,
class TInput2 = TInput1,
class TOutput = TInput1 >
46 return !( *
this != other );
49 inline TOutput
operator()(
const TInput1 & A,
const TInput2 & B)
const
50 {
return (TOutput)( A * B ); }
69 template<
class TInputImage1,
class TInputImage2 = TInputImage1,
class TOutputImage = TInputImage1 >
74 typename TInputImage1::PixelType,
75 typename TInputImage2::PixelType,
76 typename TOutputImage::PixelType > >
83 typename TInputImage1::PixelType,
84 typename TInputImage2::PixelType,
85 typename TOutputImage::PixelType >
97 #ifdef ITK_USE_CONCEPT_CHECKING
101 typename TInputImage2::PixelType,
102 typename TOutputImage::PixelType > ) );
113 void operator=(
const Self &);