18 #ifndef __itkAtan2ImageFilter_h
19 #define __itkAtan2ImageFilter_h
22 #include "vnl/vnl_math.h"
33 template<
class TInput1,
class TInput2,
class TOutput >
47 return !( *
this != other );
50 inline TOutput
operator()(
const TInput1 & A,
const TInput2 & B)
const
52 return static_cast< TOutput
>(
54 static_cast< double >( A ),
55 static_cast< double >( B ) )
84 template<
class TInputImage1,
class TInputImage2,
class TOutputImage >
89 typename TInputImage1::PixelType,
90 typename TInputImage2::PixelType,
91 typename TOutputImage::PixelType > >
98 typename TInputImage1::PixelType,
99 typename TInputImage2::PixelType,
100 typename TOutputImage::PixelType >
113 #ifdef ITK_USE_CONCEPT_CHECKING
129 void operator=(
const Self &);