18 #ifndef __itkMinimumImageFilter_h
19 #define __itkMinimumImageFilter_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 static_cast< TOutput
>( ( A < B ) ? A : B ); }
71 template<
class TInputImage1,
class TInputImage2 = TInputImage1,
class TOutputImage = TInputImage1 >
76 typename TInputImage1::PixelType,
77 typename TInputImage2::PixelType,
78 typename TOutputImage::PixelType > >
84 TInputImage1, TInputImage2, TOutputImage,
86 typename TInputImage1::PixelType,
87 typename TInputImage2::PixelType,
88 typename TOutputImage::PixelType >
101 #ifdef ITK_USE_CONCEPT_CHECKING
105 typename TInputImage2::PixelType > ) );
108 typename TOutputImage::PixelType > ) );
111 typename TInputImage2::PixelType > ) );
120 void operator=(
const Self &);