18 #ifndef itkMaximumImageFilter_h
19 #define itkMaximumImageFilter_h
32 template<
typename TInput1,
typename TInput2 = TInput1,
typename 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<
typename TInputImage1,
typename TInputImage2 = TInputImage1,
typename 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 > ) );
SmartPointer< Self > Pointer
virtual ~MaximumImageFilter()
TOutput operator()(const TInput1 &A, const TInput2 &B) const
BinaryFunctorImageFilter< TInputImage1, TInputImage2, TOutputImage, Functor::Maximum< typename TInputImage1::PixelType, typename TInputImage2::PixelType, typename TOutputImage::PixelType > > Superclass
Base class for all process objects that output image data.
bool operator!=(const Maximum &) const
bool operator==(const Maximum &other) const
void operator=(const Self &)
Implements a pixel-wise operator Max(a,b) between two images.
#define itkConceptMacro(name, concept)
SmartPointer< const Self > ConstPointer
Implements pixel-wise generic operation of two images, or of an image and a constant.