18 #ifndef __itkOrImageFilter_h
19 #define __itkOrImageFilter_h
33 template<
class TInput1,
class TInput2 = TInput1,
class TOutput = TInput1 >
47 return !( *
this != other );
50 inline TOutput
operator()(
const TInput1 & A,
const TInput2 & B)
const
52 return static_cast< TOutput
>( A | B );
83 template<
class TInputImage1,
class TInputImage2 = TInputImage1,
class TOutputImage = TInputImage1 >
88 typename TInputImage1::PixelType,
89 typename TInputImage2::PixelType,
90 typename TOutputImage::PixelType > >
97 TInputImage1, TInputImage2, TOutputImage,
99 typename TInputImage2::PixelType,
112 #ifdef ITK_USE_CONCEPT_CHECKING
116 typename TInputImage2::PixelType,
117 typename TOutputImage::PixelType > ) );
126 void operator=(
const Self &);