ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkExpNegativeImageFilter.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 itkExpNegativeImageFilter_h
19#define itkExpNegativeImageFilter_h
20
22#include "itkMath.h"
23
24namespace itk
25{
26namespace Functor
27{
33template <typename TInput, typename TOutput>
35{
36public:
37 ExpNegative() { m_Factor = 1.0; }
38 ~ExpNegative() = default;
39
40 bool
41 operator==(const ExpNegative & other) const
42 {
44 }
45
47
48 inline TOutput
49 operator()(const TInput & A) const
50 {
51 return static_cast<TOutput>(std::exp(-m_Factor * static_cast<double>(A)));
52 }
53
55 void
56 SetFactor(double factor)
57 {
58 m_Factor = factor;
59 }
60
61 double
62 GetFactor() const
63 {
64 return m_Factor;
65 }
66
67private:
68 double m_Factor;
69};
70} // namespace Functor
71
85template <typename TInputImage, typename TOutputImage>
88 TInputImage,
89 TOutputImage,
90 Functor::ExpNegative<typename TInputImage::PixelType, typename TOutputImage::PixelType>>
91{
92public:
93 ITK_DISALLOW_COPY_AND_MOVE(ExpNegativeImageFilter);
94
97 using Superclass =
98 UnaryFunctorImageFilter<TInputImage,
99 TOutputImage,
101
104
106 itkNewMacro(Self);
107
109 itkOverrideGetNameOfClassMacro(ExpNegativeImageFilter);
110
111 void
112 SetFactor(double factor)
113 {
114 if (factor == this->GetFunctor().GetFactor())
115 {
116 return;
117 }
118 this->GetFunctor().SetFactor(factor);
119 this->Modified();
120 }
121 double
122 GetFactor() const
123 {
124 return this->GetFunctor().GetFactor();
125 }
126
129
130protected:
132 ~ExpNegativeImageFilter() override = default;
133};
134} // end namespace itk
135
136#endif
UnaryFunctorImageFilter< TInputImage, TOutputImage, Functor::ExpNegative< typename TInputImage::PixelType, typename TOutputImage::PixelType > > Superclass
~ExpNegativeImageFilter() override=default
SmartPointer< const Self > ConstPointer
TOutput operator()(const TInput &A) const
ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION(ExpNegative)
bool operator==(const ExpNegative &other) const
virtual void Modified() const
Implements transparent reference counting.
#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....