ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkArithmeticOpsFunctors.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 itkArithmeticOpsFunctors_h
19#define itkArithmeticOpsFunctors_h
20
21#include "itkMath.h"
22
23namespace itk
24{
25namespace Functor
26{
27
32template <typename TInput1, typename TInput2 = TInput1, typename TOutput = TInput1>
33class ITK_TEMPLATE_EXPORT Add2
34{
35public:
36 bool
37 operator==(const Add2 &) const
38 {
39 return true;
40 }
41
43
44 inline TOutput
45 operator()(const TInput1 & A, const TInput2 & B) const
46 {
47 return static_cast<TOutput>(A + B);
48 }
49};
50
51
57template <typename TInput1, typename TInput2, typename TInput3, typename TOutput>
58class ITK_TEMPLATE_EXPORT Add3
59{
60public:
61 bool
62 operator==(const Add3 &) const
63 {
64 return true;
65 }
66
68
69 inline TOutput
70 operator()(const TInput1 & A, const TInput2 & B, const TInput3 & C) const
71 {
72 return static_cast<TOutput>(A + B + C);
73 }
74};
75
76
82template <typename TInput1, typename TInput2 = TInput1, typename TOutput = TInput1>
83class ITK_TEMPLATE_EXPORT Sub2
84{
85public:
86 bool
87 operator==(const Sub2 &) const
88 {
89 return true;
90 }
91
93
94 inline TOutput
95 operator()(const TInput1 & A, const TInput2 & B) const
96 {
97 return static_cast<TOutput>(A - B);
98 }
99};
100
101
107template <typename TInput1, typename TInput2 = TInput1, typename TOutput = TInput1>
108class ITK_TEMPLATE_EXPORT Mult
109{
110public:
111 bool
112 operator==(const Mult &) const
113 {
114 return true;
115 }
116
118
119 inline TOutput
120 operator()(const TInput1 & A, const TInput2 & B) const
121 {
122 return static_cast<TOutput>(A * B);
123 }
124};
125
126
132template <typename TInput1, typename TInput2, typename TOutput>
133class ITK_TEMPLATE_EXPORT Div
134{
135public:
136 bool
137 operator==(const Div &) const
138 {
139 return true;
140 }
141
143
144 inline TOutput
145 operator()(const TInput1 & A, const TInput2 & B) const
146 {
147 if (itk::Math::NotAlmostEquals(B, TInput2{}))
148 {
149 return (TOutput)(A / B);
150 }
151
152 return NumericTraits<TOutput>::max(static_cast<TOutput>(A));
153 }
154};
155
156
162template <typename TNumerator, typename TDenominator = TNumerator, typename TOutput = TNumerator>
163class ITK_TEMPLATE_EXPORT DivideOrZeroOut
164{
165public:
167 {
169 m_Constant = TOutput{};
170 }
171
172 ~DivideOrZeroOut() = default;
173
174 bool
175 operator==(const DivideOrZeroOut & itkNotUsed(other)) const
176 {
177 // Always return true for now. Do a comparison to m_Threshold if it is
178 // every made set-able.
179 return true;
180 }
181
183
184 inline TOutput
185 operator()(const TNumerator & n, const TDenominator & d) const
186 {
187 if (d < m_Threshold)
188 {
189 return m_Constant;
190 }
191 return static_cast<TOutput>(n) / static_cast<TOutput>(d);
192 }
193 TDenominator m_Threshold;
194 TOutput m_Constant;
195};
196
197
203template <typename TInput1, typename TInput2, typename TOutput>
204class ITK_TEMPLATE_EXPORT Modulus
205{
206public:
207 bool
208 operator==(const Modulus &) const
209 {
210 return true;
211 }
212
214
215 inline TOutput
216 operator()(const TInput1 & A, const TInput2 & B) const
217 {
218 if (B != TInput2{})
219 {
220 return static_cast<TOutput>(A % B);
221 }
222
223 return NumericTraits<TOutput>::max(static_cast<TOutput>(A));
224 }
225};
226
227#if !defined(ITK_FUTURE_LEGACY_REMOVE)
228
237template <typename TInput, typename TOutput>
238class ITK_TEMPLATE_EXPORT ModulusTransform
239{
240public:
241 ModulusTransform() { m_Dividend = 5; }
242 ~ModulusTransform() = default;
243 void
244 SetDividend(TOutput dividend)
245 {
246 m_Dividend = dividend;
247 }
248
249 bool
250 operator==(const ModulusTransform & other) const
251 {
252 return m_Dividend == other.m_Dividend;
253 }
254
255 ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION(ModulusTransform);
256
257 inline TOutput
258 operator()(const TInput & x) const
259 {
260 auto result = static_cast<TOutput>(x % m_Dividend);
261
262 return result;
263 }
264
265private:
266 TInput m_Dividend;
267};
268
269#endif
270
280template <class TInput1, class TInput2, class TOutput>
282{
283public:
284 bool
285 operator==(const DivFloor &) const
286 {
287 return true;
288 }
289
291
292 inline TOutput
293 operator()(const TInput1 & A, const TInput2 & B) const
294 {
295 const double temp = std::floor(static_cast<double>(A) / static_cast<double>(B));
296 if (std::is_integral_v<TOutput> && Math::isinf(temp))
297 {
298 if (temp > 0)
299 {
301 }
302
304 }
305 return static_cast<TOutput>(temp);
306 }
307};
308
320template <class TInput1, class TInput2, class TOutput>
322{
323public:
324 // Use default copy, assigned and destructor
325 bool
326 operator==(const DivReal &) const
327 {
328 return true;
329 }
330
332
333 inline TOutput
334 operator()(const TInput1 & A, const TInput2 & B) const
335 {
336 return static_cast<TOutput>(static_cast<typename NumericTraits<TInput1>::RealType>(A) /
337 static_cast<typename NumericTraits<TInput2>::RealType>(B));
338 }
339};
340
347template <class TInput1, class TOutput = TInput1>
349{
350public:
351 bool
352 operator==(const UnaryMinus &) const
353 {
354 return true;
355 }
356
358
359 inline TOutput
360 operator()(const TInput1 & A) const
361 {
362 return (TOutput)(-A);
363 }
364};
365} // namespace Functor
366} // namespace itk
367
368#endif
ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION(Add2)
bool operator==(const Add2 &) const
TOutput operator()(const TInput1 &A, const TInput2 &B) const
bool operator==(const Add3 &) const
ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION(Add3)
TOutput operator()(const TInput1 &A, const TInput2 &B, const TInput3 &C) const
Cast arguments to double, performs division then takes the floor.
bool operator==(const DivFloor &) const
ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION(DivFloor)
TOutput operator()(const TInput1 &A, const TInput2 &B) const
Promotes arguments to real type and performs division.
TOutput operator()(const TInput1 &A, const TInput2 &B) const
ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION(DivReal)
bool operator==(const DivReal &) const
bool operator==(const Div &) const
TOutput operator()(const TInput1 &A, const TInput2 &B) const
ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION(Div)
ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION(DivideOrZeroOut)
TOutput operator()(const TNumerator &n, const TDenominator &d) const
bool operator==(const DivideOrZeroOut &other) const
bool operator==(const Modulus &) const
TOutput operator()(const TInput1 &A, const TInput2 &B) const
ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION(Modulus)
TOutput operator()(const TInput1 &A, const TInput2 &B) const
ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION(Mult)
bool operator==(const Mult &) const
bool operator==(const Sub2 &) const
ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION(Sub2)
TOutput operator()(const TInput1 &A, const TInput2 &B) const
Apply the unary minus operator.
bool operator==(const UnaryMinus &) const
TOutput operator()(const TInput1 &A) const
ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION(UnaryMinus)
static constexpr T NonpositiveMin()
static constexpr T max(const T &)
bool ITKIOXML_EXPORT operator==(itk::FancyString &s, const std::string &)
bool NotAlmostEquals(T1 x1, T2 x2)
Definition itkMath.h:689
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....