ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkWeightedAddImageFilter.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 itkWeightedAddImageFilter_h
19#define itkWeightedAddImageFilter_h
20
22#include "itkNumericTraits.h"
23#include "itkMath.h"
24
25namespace itk
26{
27namespace Functor
28{
34template <typename TInput1, typename TInput2, typename TOutput>
36{
37public:
41 : m_Alpha(0.0)
42 , m_Beta(0.0)
43 {}
44 ~WeightedAdd2() = default;
45
46 bool
47 operator==(const WeightedAdd2 & other) const
48 {
49 return Math::ExactlyEquals(m_Alpha, other.m_Alpha);
50 }
51
53
54 inline TOutput
55 operator()(const TInput1 & A, const TInput2 & B) const
56 {
57 const RealType sum1 = A * m_Alpha;
58 const RealType sum2 = B * m_Beta;
59
60 return static_cast<TOutput>(sum1 + sum2);
61 }
62
63 void
69
71 GetAlpha() const
72 {
73 return m_Alpha;
74 }
75
76private:
78 RealType m_Beta; // auxiliary var to avoid a subtraction at every pixel
79};
80} // namespace Functor
81
115template <typename TInputImage1, typename TInputImage2, typename TOutputImage>
116class ITK_TEMPLATE_EXPORT WeightedAddImageFilter
117 : public BinaryGeneratorImageFilter<TInputImage1, TInputImage2, TOutputImage>
118
119{
120public:
121 ITK_DISALLOW_COPY_AND_MOVE(WeightedAddImageFilter);
122
126
127
128 using FunctorType = Functor::
129 WeightedAdd2<typename TInputImage1::PixelType, typename TInputImage2::PixelType, typename TOutputImage::PixelType>;
130
133
134 using RealType = typename FunctorType::RealType;
135
137 itkNewMacro(Self);
138
140 itkOverrideGetNameOfClassMacro(WeightedAddImageFilter);
141
143 void
145 {
146 this->GetFunctor().SetAlpha(alpha);
147 this->Modified();
148 }
149
152 GetAlpha() const
153 {
154 return this->GetFunctor().GetAlpha();
155 }
156
158 itkConceptMacro(Input1RealTypeMultiplyCheck,
160 itkConceptMacro(Input2RealTypeMultiplyCheck,
162
163protected:
165 ~WeightedAddImageFilter() override = default;
166
167 void
169 {
170 this->SetFunctor(this->GetFunctor());
171 }
172
173private:
174 itkGetConstReferenceMacro(Functor, FunctorType);
177 {
178 return m_Functor;
179 }
180
182};
183} // end namespace itk
184
185#endif
void SetFunctor(const std::function< ConstRefFunctionType > &f)
ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION(WeightedAdd2)
bool operator==(const WeightedAdd2 &other) const
TOutput operator()(const TInput1 &A, const TInput2 &B) const
typename NumericTraits< TInput1 >::RealType RealType
typename NumericTraits< TInput1 >::AccumulateType AccumulatorType
virtual void Modified() const
Implements transparent reference counting.
BinaryGeneratorImageFilter< TInputImage1, TInputImage2, TOutputImage > Superclass
Functor:: WeightedAdd2< typename TInputImage1::PixelType, typename TInputImage2::PixelType, typename TOutputImage::PixelType > FunctorType
~WeightedAddImageFilter() override=default
typename FunctorType::RealType RealType
SmartPointer< const Self > ConstPointer
virtual const FunctorType & GetFunctor() const
#define itkConceptMacro(name, concept)
bool ExactlyEquals(const TInput1 &x1, const TInput2 &x2)
Return the result of an exact comparison between two scalar values of potentially different types.
Definition itkMath.h:719
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....