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 );
81 template<
typename TInputImage1,
typename TInputImage2 = TInputImage1,
typename TOutputImage = TInputImage1 >
96 typename TInputImage2::PixelType,
97 typename TOutputImage::PixelType >;
106 #ifdef ITK_USE_CONCEPT_CHECKING
110 typename TOutputImage::PixelType > ) );
113 typename TOutputImage::PixelType > ) );
116 typename TInputImage2::PixelType > ) );
123 #if !defined( ITK_WRAPPING_PARSER )
TOutput operator()(const TInput1 &A, const TInput2 &B) const
~MaximumImageFilter() override=default
The base class for all process objects (source, filters, mappers) in the Insight data processing pipe...
Base class for all process objects that output image data.
bool operator!=(const Maximum &) const
Implements pixel-wise generic operation of two images, or of an image and a constant.
void SetFunctor(const std::function< ConstRefFunctionType > &f)
bool operator==(const Maximum &other) const
Functor::Maximum< typename TInputImage1::PixelType, typename TInputImage2::PixelType, typename TOutputImage::PixelType > FunctorType
Implements a pixel-wise operator Max(a,b) between two images.
#define itkConceptMacro(name, concept)