18 #ifndef __itkModulusImageFilter_h
19 #define __itkModulusImageFilter_h
32 template<
class TInput1,
class TInput2,
class TOutput >
46 return !( *
this != other );
49 inline TOutput
operator()(
const TInput1 & A,
const TInput2 & B)
const
51 TOutput result =
static_cast< TOutput
>( A % B );
65 template<
typename TInput,
typename TOutput >
84 return !( *
this != other );
89 TOutput result =
static_cast< TOutput
>( x %
m_Dividend );
111 template<
typename TInputImage1,
class TInputImage2 = TInputImage1,
class TOutputImage = TInputImage1 >
116 typename TInputImage1::PixelType,
117 typename TInputImage2::PixelType,
118 typename TOutputImage::PixelType > >
125 typename TInputImage1::PixelType,
126 typename TInputImage2::PixelType,
148 #ifdef ITK_USE_CONCEPT_CHECKING
162 void operator=(
const Self &);
167 #ifndef ITK_MANUAL_INSTANTIATION
168 #include "itkModulusImageFilter.hxx"