18 #ifndef __itkNaryMaximumImageFilter_h
19 #define __itkNaryMaximumImageFilter_h
33 template<
class TInput,
class TOutput >
43 inline TOutput
operator()(
const std::vector< TInput > & B)
const
47 for (
unsigned int i = 0; i < B.size(); i++ )
49 if ( A < static_cast< OutputValueType >( B[i] ) )
103 template<
class TInputImage,
class TOutputImage >
107 Functor::Maximum1< typename TInputImage::PixelType,
108 typename TInputImage::PixelType > >
114 TInputImage, TOutputImage,
128 #ifdef ITK_USE_CONCEPT_CHECKING
132 typename TOutputImage::PixelType > ) );
145 void operator=(
const Self &);