18 #ifndef __itkMaximumImageFilter_h
19 #define __itkMaximumImageFilter_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
53 return static_cast< TOutput
>( A );
57 return static_cast< TOutput
>( B );
80 template<
class TInputImage1,
class TInputImage2 = TInputImage1,
class TOutputImage = TInputImage1 >
85 typename TInputImage1::PixelType,
86 typename TInputImage2::PixelType,
87 typename TOutputImage::PixelType > >
94 typename TInputImage1::PixelType,
95 typename TInputImage2::PixelType,
96 typename TOutputImage::PixelType >
109 #ifdef ITK_USE_CONCEPT_CHECKING
113 typename TOutputImage::PixelType > ) );
116 typename TOutputImage::PixelType > ) );
119 typename TInputImage2::PixelType > ) );
128 void operator=(
const Self &);