ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkMultivariateLegendrePolynomial.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 itkMultivariateLegendrePolynomial_h
19#define itkMultivariateLegendrePolynomial_h
20
21#include "itkIntTypes.h"
22#include "itkIndent.h"
23#include <vector>
24#include "itkArray.h"
25#include "ITKPolynomialsExport.h"
26
27namespace itk
28{
67class ITKPolynomials_EXPORT MultivariateLegendrePolynomial
68{
69public:
71
72 using DoubleArrayType = std::vector<double>;
73 using ULongArrayType = std::vector<unsigned long>;
74 using LongArrayType = std::vector<long>;
75
78
82
86
88 MultivariateLegendrePolynomial(unsigned int dimension, unsigned int degree, const DomainSizeType & domainSize);
89
92
94 unsigned int
96 {
97 return m_Dimension;
98 }
99
101 unsigned int
102 GetDegree() const
103 {
104 return m_Degree;
105 }
106
113 unsigned int
115 {
117 }
118
120 const DomainSizeType &
122 {
123 return m_DomainSize;
124 }
125
132 {
133 public:
134 CoefficientVectorSizeMismatch(const size_t given, const size_t required)
135 : m_Required{ required }
136 , m_Given{ given }
137 {}
138
140 size_t m_Given;
141 };
142
147 void
149
150 void
151 SetCoefficients(const ParametersType & coefficients);
152
156
159 double
161 {
162 if (m_Dimension == 2)
163 {
164 if (index[1] != m_PrevY)
165 {
166 // normalized y [-1, 1]
167 const double norm_y = m_NormFactor[1] * static_cast<double>(index[1] - 1);
168 this->CalculateXCoef(norm_y, m_CoefficientArray);
169 m_PrevY = index[1];
170 }
171
172 // normalized x [-1, 1]
173 const double norm_x = m_NormFactor[0] * static_cast<double>(index[0] - 1);
174
175 return LegendreSum(norm_x, m_Degree, m_CachedXCoef);
176 }
177 if (m_Dimension == 3)
178 {
179 if (index[2] != m_PrevZ)
180 {
181 // normalized z [-1, 1]
182 const double norm_z = m_NormFactor[2] * static_cast<double>(index[2] - 1);
183 this->CalculateYCoef(norm_z, m_CoefficientArray);
184 m_PrevZ = index[2];
185 }
186
187 if (index[1] != m_PrevY)
188 {
189 // normalized y [-1, 1]
190 const double norm_y = m_NormFactor[1] * static_cast<double>(index[1] - 1);
191 this->CalculateXCoef(norm_y, m_CachedYCoef);
192 m_PrevY = index[1];
193 }
194
195 // normalized x [-1, 1]
196 const double norm_x = m_NormFactor[0] * static_cast<double>(index[0] - 1);
197 return this->LegendreSum(norm_x, m_Degree, m_CachedXCoef);
198 }
199 return 0;
200 }
201
203 unsigned int
204 GetNumberOfCoefficients(unsigned int dimension, unsigned int degree);
205
214 {
215 public:
225
226 void
228 {
229 m_IsAtEnd = false;
230 for (unsigned int dim = 0; dim < m_Dimension; ++dim)
231 {
232 m_Index[dim] = 0;
233 }
234 }
235
236 bool
237 IsAtEnd() const
238 {
239 return m_IsAtEnd;
240 }
241
244 {
245 for (unsigned int dim = 0; dim < m_Dimension; ++dim)
246 {
247 if (m_Index[dim] < static_cast<int>(m_DomainSize[dim] - 1))
248 {
249 m_Index[dim] += 1;
250 return *this;
251 }
252
253 if (dim == m_Dimension - 1)
254 {
255 m_IsAtEnd = true;
256 break;
257 }
258 else
259 {
260 m_Index[dim] = 0;
261 }
262 }
263 return *this;
264 }
265
266 double
268 {
270 }
271
272 private:
274 unsigned int m_Dimension;
277 bool m_IsAtEnd{ false };
278 }; // end of class Iterator
279
280 void
281 Print(std::ostream & os) const;
282
283protected:
284 void
285 PrintSelf(std::ostream & os, Indent indent) const;
286
287 double
288 LegendreSum(const double x, int n, const CoefficientArrayType & coef, int offset = 0);
289
290 void
291 CalculateXCoef(double norm_y, const CoefficientArrayType & coef);
292
293 void
294 CalculateYCoef(double norm_z, const CoefficientArrayType & coef);
295
296private:
298 unsigned int m_Dimension{};
299 unsigned int m_Degree{};
301
306
310}; // end of class
311
312ITKPolynomials_EXPORT std::ostream &
313 operator<<(std::ostream & os, const MultivariateLegendrePolynomial & poly);
314} // end of namespace itk
315#endif
Array class with size defined at construction time.
Definition itkArray.h:48
Control indentation during Print() invocation.
Definition itkIndent.h:50
CoefficientVectorSizeMismatch(const vcl_size_t given, const vcl_size_t required)
Iterator which only supports forward iteration and Begin(), IsAtEnd(), and Get() method which work ju...
2D and 3D multivariate Legendre Polynomial
void Print(std::ostream &os) const
void SetCoefficients(const ParametersType &coefficients)
const CoefficientArrayType & GetCoefficients() const
Gets Legendre polynomials' coefficients.
void CalculateXCoef(double norm_y, const CoefficientArrayType &coef)
void PrintSelf(std::ostream &os, Indent indent) const
unsigned int GetNumberOfCoefficients(unsigned int dimension, unsigned int degree)
void CalculateYCoef(double norm_z, const CoefficientArrayType &coef)
void SetCoefficients(const CoefficientArrayType &coefficients)
Sets the Legendre polynomials' parameters.
MultivariateLegendrePolynomial(unsigned int dimension, unsigned int degree, const DomainSizeType &domainSize)
double LegendreSum(const double x, int n, const CoefficientArrayType &coef, int offset=0)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
ITKCommon_EXPORT std::ostream & operator<<(std::ostream &out, typename AnatomicalOrientation::CoordinateEnum value)
long IndexValueType
Definition itkIntTypes.h:93