ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkCacheableScalarFunction.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 itkCacheableScalarFunction_h
19#define itkCacheableScalarFunction_h
20
21#include "itkArray.h"
22#include "itkIntTypes.h"
23#include "ITKBiasCorrectionExport.h"
24
25namespace itk
26{
60class ITKBiasCorrection_EXPORT CacheableScalarFunction
61{
62public:
65
68
70 using MeasureType = double;
72
77 {
78 return m_NumberOfSamples;
79 }
80
82 bool
84 {
85 return m_CacheAvailable;
86 }
87
89 double
91 {
92 return m_CacheUpperBound;
93 }
94
96 double
98 {
99 return m_CacheLowerBound;
100 }
101
105 virtual MeasureType
107
109 double
111 {
112 return m_TableInc;
113 }
114
120 inline MeasureType
122 {
124 {
125 throw ExceptionObject(__FILE__, __LINE__);
126 }
127 // access table
128 auto index = static_cast<int>((x - m_CacheLowerBound) / m_TableInc);
129 return m_CacheTable[index];
130 }
131
132protected:
135 void
136 CreateCache(double lowerBound, double upperBound, SizeValueType sampleSize);
137
138private:
142
145
147 double m_CacheUpperBound{ 0.0 };
148
150 double m_CacheLowerBound{ 0.0 };
151
153 double m_TableInc{ 0.0 };
154
156 bool m_CacheAvailable{ false };
157}; // end of class
158} // end of namespace itk
159#endif
Array class with size defined at construction time.
Definition itkArray.h:48
MeasureType GetCachedValue(MeasureType x)
virtual MeasureType Evaluate(MeasureType x)
void CreateCache(double lowerBound, double upperBound, SizeValueType sampleSize)
Standard exception handling object.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
unsigned long SizeValueType
Definition itkIntTypes.h:86