ITK  5.0.0
Insight Segmentation and Registration Toolkit
itkAtan2ImageFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright Insight Software Consortium
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0.txt
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  *=========================================================================*/
18 #ifndef itkAtan2ImageFilter_h
19 #define itkAtan2ImageFilter_h
20 
22 #include "itkMath.h"
23 
24 namespace itk
25 {
26 namespace Functor
27 {
33 template< typename TInput1, typename TInput2, typename TOutput >
34 class Atan2
35 {
36 public:
37  Atan2() = default;
38  ~Atan2() = default;
39  bool operator!=(const Atan2 &) const
40  {
41  return false;
42  }
44 
45  bool operator==(const Atan2 & other) const
46  {
47  return !( *this != other );
48  }
49 
50  inline TOutput operator()(const TInput1 & A, const TInput2 & B) const
51  {
52  return static_cast< TOutput >(
53  std::atan2(
54  static_cast< double >( A ),
55  static_cast< double >( B ) )
56  );
57  }
58 };
59 }
60 
85 template< typename TInputImage1, typename TInputImage2, typename TOutputImage >
87  public
88  BinaryGeneratorImageFilter< TInputImage1, TInputImage2, TOutputImage >
89 {
90 public:
91  ITK_DISALLOW_COPY_AND_ASSIGN(Atan2ImageFilter);
92 
98  using FunctorType = Functor::Atan2< typename TInputImage1::PixelType,
99  typename TInputImage2::PixelType,
100  typename TOutputImage::PixelType >;
101 
103  itkNewMacro(Self);
104 
106  itkTypeMacro(Atan2ImageFilter,
108 
109 #ifdef ITK_USE_CONCEPT_CHECKING
110  // Begin concept checking
111  itkConceptMacro( Input1ConvertibleToDoubleCheck,
113  itkConceptMacro( Input2ConvertibleToDoubleCheck,
115  itkConceptMacro( DoubleConvertibleToOutputCheck,
117  // End concept checking
118 #endif
119 
120 protected:
122  {
123 #if !defined( ITK_WRAPPING_PARSER )
125 #endif // !defined( ITK_WRAPPING_PARSER )
126  }
127  ~Atan2ImageFilter() override = default;
128 };
129 } // end namespace itk
130 
131 #endif
bool operator==(const Atan2 &other) const
~Atan2ImageFilter() override=default
bool operator!=(const Atan2 &) const
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.
Computes two argument inverse tangent.
Implements pixel-wise generic operation of two images, or of an image and a constant.
void SetFunctor(const std::function< ConstRefFunctionType > &f)
Functor::Atan2< typename TInputImage1::PixelType, typename TInputImage2::PixelType, typename TOutputImage::PixelType > FunctorType
TOutput operator()(const TInput1 &A, const TInput2 &B) const
#define itkConceptMacro(name, concept)