18 #ifndef __itkSubtractImageFilter_h
19 #define __itkSubtractImageFilter_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 ); }
93 template<
class TInputImage1,
class TInputImage2 = TInputImage1,
class TOutputImage = TInputImage1 >
98 typename TInputImage1::PixelType,
99 typename TInputImage2::PixelType,
100 typename TOutputImage::PixelType > >
106 TInputImage1, TInputImage2, TOutputImage,
108 typename TInputImage2::PixelType,
121 #ifdef ITK_USE_CONCEPT_CHECKING
125 typename TInputImage2::PixelType,
126 typename TOutputImage::PixelType > ) );
137 void operator=(
const Self &);