ITK  5.4.0
Insight Toolkit
itkTernaryMagnitudeSquaredImageFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright NumFOCUS
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  * https://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 itkTernaryMagnitudeSquaredImageFilter_h
19 #define itkTernaryMagnitudeSquaredImageFilter_h
20 
22 
23 namespace itk
24 {
25 namespace Functor
26 {
32 template <typename TInput1, typename TInput2, typename TInput3, typename TOutput>
34 {
35 public:
36  bool
37  operator==(const ModulusSquare3 &) const
38  {
39  return true;
40  }
41 
43 
44  inline TOutput
45  operator()(const TInput1 & A, const TInput2 & B, const TInput3 & C) const
46  {
47  return static_cast<TOutput>(A * A + B * B + C * C);
48  }
49 };
50 } // namespace Functor
51 
63 template <typename TInputImage1, typename TInputImage2, typename TInputImage3, typename TOutputImage>
65  : public TernaryGeneratorImageFilter<TInputImage1, TInputImage2, TInputImage3, TOutputImage>
66 {
67 public:
68  ITK_DISALLOW_COPY_AND_MOVE(TernaryMagnitudeSquaredImageFilter);
69 
73 
76 
77  using FunctorType = Functor::ModulusSquare3<typename TInputImage1::PixelType,
78  typename TInputImage2::PixelType,
79  typename TInputImage3::PixelType,
80  typename TOutputImage::PixelType>;
81 
83  itkNewMacro(Self);
84 
86  itkOverrideGetNameOfClassMacro(TernaryMagnitudeSquaredImageFilter);
87 
88 protected:
90  {
91 #if !defined(ITK_WRAPPING_PARSER)
93 #endif
94  }
95  ~TernaryMagnitudeSquaredImageFilter() override = default;
96 };
97 } // end namespace itk
98 
99 #endif
itk::Functor::ModulusSquare3
Definition: itkTernaryMagnitudeSquaredImageFilter.h:33
itk::Functor::ModulusSquare3::ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION
ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION(ModulusSquare3)
itk::Functor::ModulusSquare3::operator==
bool operator==(const ModulusSquare3 &) const
Definition: itkTernaryMagnitudeSquaredImageFilter.h:37
itk::TernaryMagnitudeSquaredImageFilter::~TernaryMagnitudeSquaredImageFilter
~TernaryMagnitudeSquaredImageFilter() override=default
itk::Functor::ModulusSquare3::operator()
TOutput operator()(const TInput1 &A, const TInput2 &B, const TInput3 &C) const
Definition: itkTernaryMagnitudeSquaredImageFilter.h:45
itk::SmartPointer< Self >
itk::ImageSource
Base class for all process objects that output image data.
Definition: itkImageSource.h:67
itk::TernaryGeneratorImageFilter
Implements pixel-wise generic operation of three images or images with constants.
Definition: itkTernaryGeneratorImageFilter.h:54
itk::TernaryGeneratorImageFilter::SetFunctor
void SetFunctor(const std::function< ConstRefFunctionType > &f)
Definition: itkTernaryGeneratorImageFilter.h:166
itk::TernaryMagnitudeSquaredImageFilter::FunctorType
Functor::ModulusSquare3< typename TInputImage1::PixelType, typename TInputImage2::PixelType, typename TInputImage3::PixelType, typename TOutputImage::PixelType > FunctorType
Definition: itkTernaryMagnitudeSquaredImageFilter.h:80
itk
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Definition: itkAnnulusOperator.h:24
itk::TernaryMagnitudeSquaredImageFilter::TernaryMagnitudeSquaredImageFilter
TernaryMagnitudeSquaredImageFilter()
Definition: itkTernaryMagnitudeSquaredImageFilter.h:89
itk::ProcessObject
The base class for all process objects (source, filters, mappers) in the Insight data processing pipe...
Definition: itkProcessObject.h:139
itk::TernaryMagnitudeSquaredImageFilter
Compute the pixel-wise squared magnitude of three images.
Definition: itkTernaryMagnitudeSquaredImageFilter.h:64
itkTernaryGeneratorImageFilter.h