ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkSigmoidImageFilter.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 itkSigmoidImageFilter_h
19#define itkSigmoidImageFilter_h
20
22#include "itkMath.h"
23
24namespace itk
25{
48
49namespace Functor
50{
51template <typename TInput, typename TOutput>
53{
54public:
62
63 ~Sigmoid() = default;
64
65
66 bool
73
75
76 inline TOutput
77 operator()(const TInput & A) const
78 {
79 const double x = (static_cast<double>(A) - m_Beta) / m_Alpha;
80 const double e = 1.0 / (1.0 + std::exp(-x));
81 const double v = (m_OutputMaximum - m_OutputMinimum) * e + m_OutputMinimum;
82
83 return static_cast<TOutput>(v);
84 }
85
86 void
87 SetAlpha(double alpha)
88 {
89 m_Alpha = alpha;
90 }
91
92 void
93 SetBeta(double beta)
94 {
95 m_Beta = beta;
96 }
97
98 double
99 GetAlpha() const
100 {
101 return m_Alpha;
102 }
103
104 double
105 GetBeta() const
106 {
107 return m_Beta;
108 }
109
110 void
111 SetOutputMinimum(TOutput min)
112 {
113 m_OutputMinimum = min;
114 }
115
116 void
117 SetOutputMaximum(TOutput max)
118 {
119 m_OutputMaximum = max;
120 }
121
122 TOutput
124 {
125 return m_OutputMinimum;
126 }
127
128 TOutput
130 {
131 return m_OutputMaximum;
132 }
133
134private:
135 double m_Alpha;
136 double m_Beta;
139};
140} // namespace Functor
141
142template <typename TInputImage, typename TOutputImage>
144 : public UnaryFunctorImageFilter<TInputImage,
145 TOutputImage,
146 Functor::Sigmoid<typename TInputImage::PixelType, typename TOutputImage::PixelType>>
147{
148public:
149 ITK_DISALLOW_COPY_AND_MOVE(SigmoidImageFilter);
150
154 UnaryFunctorImageFilter<TInputImage,
155 TOutputImage,
157
160
161 using OutputPixelType = typename TOutputImage::PixelType;
162
164 itkNewMacro(Self);
165
167 itkOverrideGetNameOfClassMacro(SigmoidImageFilter);
168
169 void
170 SetAlpha(double alpha)
171 {
172 if (Math::ExactlyEquals(alpha, this->GetFunctor().GetAlpha()))
173 {
174 return;
175 }
176 this->GetFunctor().SetAlpha(alpha);
177 this->Modified();
178 }
179
180 double
181 GetAlpha() const
182 {
183 return this->GetFunctor().GetAlpha();
184 }
185
186 void
187 SetBeta(double beta)
188 {
189 if (Math::ExactlyEquals(beta, this->GetFunctor().GetBeta()))
190 {
191 return;
192 }
193 this->GetFunctor().SetBeta(beta);
194 this->Modified();
195 }
196
197 double
198 GetBeta() const
199 {
200 return this->GetFunctor().GetBeta();
201 }
202
203 void
205 {
207 {
208 return;
209 }
210 this->GetFunctor().SetOutputMinimum(min);
211 this->Modified();
212 }
213
216 {
217 return this->GetFunctor().GetOutputMinimum();
218 }
219
220 void
222 {
224 {
225 return;
226 }
227 this->GetFunctor().SetOutputMaximum(max);
228 this->Modified();
229 }
230
233 {
234 return this->GetFunctor().GetOutputMaximum();
235 }
236
238 itkConceptMacro(OutputAdditiveOperatorsCheck, (Concept::AdditiveOperators<OutputPixelType>));
239 itkConceptMacro(DoubleConvertibleToOutputCheck, (Concept::Convertible<double, OutputPixelType>));
241 itkConceptMacro(OutputDoubleAdditiveOperatorsCheck,
243
244protected:
246 ~SigmoidImageFilter() override = default;
247};
248} // end namespace itk
249
250#endif
void SetOutputMinimum(TOutput min)
void SetOutputMaximum(TOutput max)
bool operator==(const Sigmoid &other) const
ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION(Sigmoid)
void SetAlpha(double alpha)
TOutput operator()(const TInput &A) const
static constexpr T max(const T &)
static constexpr T min(const T &)
virtual void Modified() const
void SetOutputMinimum(OutputPixelType min)
UnaryFunctorImageFilter< TInputImage, TOutputImage, Functor::Sigmoid< typename TInputImage::PixelType, typename TOutputImage::PixelType > > Superclass
OutputPixelType GetOutputMaximum() const
SmartPointer< const Self > ConstPointer
void SetOutputMaximum(OutputPixelType max)
~SigmoidImageFilter() override=default
OutputPixelType GetOutputMinimum() const
typename TOutputImage::PixelType OutputPixelType
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....