ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkCompositeValleyFunction.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 itkCompositeValleyFunction_h
19#define itkCompositeValleyFunction_h
20
22#include "ITKBiasCorrectionExport.h"
23#include <vector>
24
25namespace itk
26{
68{
69public:
71 TargetClass(double mean, double sigma)
72 {
73 m_Mean = mean;
74 m_Sigma = sigma;
75 }
76
79 void
80 SetMean(double mean)
81 {
82 m_Mean = mean;
83 }
84 double
85 GetMean() const
86 {
87 return m_Mean;
88 }
89
92 void
93 SetSigma(double sigma)
94 {
95 m_Sigma = sigma;
96 }
97 double
98 GetSigma() const
99 {
100 return m_Sigma;
101 }
102
103private:
104 double m_Mean;
105 double m_Sigma;
106}; // end of class
107
108class ITKBiasCorrection_EXPORT CompositeValleyFunction : public CacheableScalarFunction
109{
110public:
113
117
119 CompositeValleyFunction(const MeasureArrayType & classMeans, const MeasureArrayType & classSigmas);
120
123
125 double
127 {
128 return m_UpperBound;
129 }
130
132 double
134 {
135 return m_LowerBound;
136 }
137
140 MeasureType
142 {
143 if (x > m_UpperBound || x < m_LowerBound)
144 {
145 return 1;
146 }
147
148 if (!this->IsCacheAvailable())
149 {
150 return this->Evaluate(x);
151 }
152
153 return GetCachedValue(x);
154 }
155
157 MeasureType
159
161 inline MeasureType
163 {
164 return 1 - 1 / (1 + d * d / 3);
165 }
166
167protected:
168 void
169 AddNewClass(double mean, double sigma)
170 {
171 const TargetClass aClass(mean, sigma);
172
173 m_Targets.push_back(aClass);
174 }
175
177 void
179
180private:
182 std::vector<TargetClass> m_Targets{};
183
186 double m_UpperBound{};
187
190 double m_LowerBound{};
191}; // end of class
192} // end of namespace itk
193#endif
MeasureType GetCachedValue(MeasureType x)
CompositeValleyFunction(const MeasureArrayType &classMeans, const MeasureArrayType &classSigmas)
MeasureType operator()(MeasureType x)
MeasureType Evaluate(MeasureType x) override
void AddNewClass(double mean, double sigma)
Superclass::MeasureArrayType MeasureArrayType
void SetSigma(double sigma)
TargetClass(double mean, double sigma)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....