ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkQuadEdgeMeshParamMatrixCoefficients.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 itkQuadEdgeMeshParamMatrixCoefficients_h
19#define itkQuadEdgeMeshParamMatrixCoefficients_h
20
21#include "itkQuadEdgeMesh.h"
22#include "itkTriangleHelper.h"
23#include "itkMath.h"
24
25namespace itk
26{
32template <typename TInputMesh>
34{
35public:
36 using InputMeshType = TInputMesh;
37 using InputCoordinateType = typename InputMeshType::CoordinateType;
38#ifndef ITK_FUTURE_LEGACY_REMOVE
39 using InputCoordRepType ITK_FUTURE_DEPRECATED(
40 "ITK 6 discourages using `InputCoordRepType`. Please use `InputCoordinateType` instead!") = InputCoordinateType;
41#endif
42 using InputQEType = typename InputMeshType::QEType;
43
44 MatrixCoefficients() = default;
45 virtual ~MatrixCoefficients() = default;
46
48 operator()(const InputMeshType * iMesh, InputQEType * iEdge) const = 0;
49};
50
58template <typename TInputMesh>
59class ITK_TEMPLATE_EXPORT OnesMatrixCoefficients : public MatrixCoefficients<TInputMesh>
60{
61public:
63
64 using InputMeshType = TInputMesh;
65 using InputCoordinateType = typename InputMeshType::CoordinateType;
66#ifndef ITK_FUTURE_LEGACY_REMOVE
67 using InputCoordRepType ITK_FUTURE_DEPRECATED(
68 "ITK 6 discourages using `InputCoordRepType`. Please use `InputCoordinateType` instead!") = InputCoordinateType;
69#endif
70 using InputQEType = typename InputMeshType::QEType;
71
73
78 operator()(const InputMeshType * itkNotUsed(iMesh), InputQEType * itkNotUsed(iEdge)) const override
79 {
80 return 1.0;
81 }
82};
83
91template <typename TInputMesh>
92class ITK_TEMPLATE_EXPORT InverseEuclideanDistanceMatrixCoefficients : public MatrixCoefficients<TInputMesh>
93{
94public:
96
97 using InputMeshType = TInputMesh;
98 using InputCoordinateType = typename InputMeshType::CoordinateType;
99#ifndef ITK_FUTURE_LEGACY_REMOVE
100 using InputCoordRepType ITK_FUTURE_DEPRECATED(
101 "ITK 6 discourages using `InputCoordRepType`. Please use `InputCoordinateType` instead!") = InputCoordinateType;
102#endif
103 using InputPointType = typename InputMeshType::PointType;
104 using InputPointIdentifier = typename InputMeshType::PointIdentifier;
105 using InputQEType = typename InputMeshType::QEType;
106 using InputVectorType = typename InputMeshType::VectorType;
107
109
116 operator()(const InputMeshType * iMesh, InputQEType * iEdge) const override
117 {
118 const InputPointIdentifier id1 = iEdge->GetOrigin();
119 const InputPointIdentifier id2 = iEdge->GetDestination();
120
121 const InputPointType pt1 = iMesh->GetPoint(id1);
122 const InputPointType pt2 = iMesh->GetPoint(id2);
123
124 const InputCoordinateType oValue = 1.0 / pt1.EuclideanDistanceTo(pt2);
125
126 return oValue;
127 }
128};
129
137template <typename TInputMesh>
138class ITK_TEMPLATE_EXPORT ConformalMatrixCoefficients : public MatrixCoefficients<TInputMesh>
139{
140public:
142
143 using InputMeshType = TInputMesh;
144 using InputCoordinateType = typename InputMeshType::CoordinateType;
145#ifndef ITK_FUTURE_LEGACY_REMOVE
146 using InputCoordRepType ITK_FUTURE_DEPRECATED(
147 "ITK 6 discourages using `InputCoordRepType`. Please use `InputCoordinateType` instead!") = InputCoordinateType;
148#endif
149 using InputPointType = typename InputMeshType::PointType;
150 using InputPointIdentifier = typename InputMeshType::PointIdentifier;
151 using InputQEType = typename InputMeshType::QEType;
152
154
161 operator()(const InputMeshType * iMesh, InputQEType * iEdge) const override
162 {
163 const InputPointIdentifier id1 = iEdge->GetOrigin();
164 const InputPointIdentifier id2 = iEdge->GetDestination();
165 const InputPointType pt1 = iMesh->GetPoint(id1);
166 const InputPointType pt2 = iMesh->GetPoint(id2);
167
168 InputCoordinateType oValue(0.0);
169
170 if (iEdge->IsLeftSet())
171 {
172 const InputPointIdentifier idA = iEdge->GetLnext()->GetDestination();
173 const InputPointType ptA = iMesh->GetPoint(idA);
174 oValue += TriangleHelper<InputPointType>::Cotangent(pt1, ptA, pt2);
175 }
176 if (iEdge->IsRightSet())
177 {
178 const InputPointIdentifier idB = iEdge->GetRnext()->GetOrigin();
179 const InputPointType ptB = iMesh->GetPoint(idB);
180 oValue += TriangleHelper<InputPointType>::Cotangent(pt1, ptB, pt2);
181 }
182
183 return std::max(InputCoordinateType{}, oValue);
184 }
185};
186
195template <typename TInputMesh>
196class ITK_TEMPLATE_EXPORT AuthalicMatrixCoefficients : public MatrixCoefficients<TInputMesh>
197{
198public:
200
201 using InputMeshType = TInputMesh;
202 using InputCoordinateType = typename InputMeshType::CoordinateType;
203#ifndef ITK_FUTURE_LEGACY_REMOVE
204 using InputCoordRepType ITK_FUTURE_DEPRECATED(
205 "ITK 6 discourages using `InputCoordRepType`. Please use `InputCoordinateType` instead!") = InputCoordinateType;
206#endif
207 using InputPointType = typename InputMeshType::PointType;
208 using InputPointIdentifier = typename InputMeshType::PointIdentifier;
209 using InputQEType = typename InputMeshType::QEType;
210
212
220 operator()(const InputMeshType * iMesh, InputQEType * iEdge) const override
221 {
222 const InputPointIdentifier id1 = iEdge->GetOrigin();
223 const InputPointType pt1 = iMesh->GetPoint(id1);
224
225 const InputPointIdentifier id2 = iEdge->GetDestination();
226 const InputPointType pt2 = iMesh->GetPoint(id2);
227
228 InputCoordinateType oValue{};
229
230 if (iEdge->IsLeftSet())
231 {
232 const InputPointIdentifier idA = iEdge->GetLnext()->GetDestination();
233 const InputPointType ptA = iMesh->GetPoint(idA);
234 oValue += TriangleHelper<InputPointType>::Cotangent(pt1, pt2, ptA);
235 }
236
237 if (iEdge->IsRightSet())
238 {
239 const InputPointIdentifier idB = iEdge->GetRnext()->GetOrigin();
240 const InputPointType ptB = iMesh->GetPoint(idB);
241 oValue += TriangleHelper<InputPointType>::Cotangent(pt1, pt2, ptB);
242 }
243
244 return oValue / pt1.SquaredEuclideanDistanceTo(pt2);
245 }
246};
247
255template <typename TInputMesh>
256class ITK_TEMPLATE_EXPORT IntrinsicMatrixCoefficients : public MatrixCoefficients<TInputMesh>
257{
258public:
260
261 using InputMeshType = TInputMesh;
262 using InputCoordinateType = typename InputMeshType::CoordinateType;
263#ifndef ITK_FUTURE_LEGACY_REMOVE
264 using InputCoordRepType ITK_FUTURE_DEPRECATED(
265 "ITK 6 discourages using `InputCoordRepType`. Please use `InputCoordinateType` instead!") = InputCoordinateType;
266#endif
267 using InputQEType = typename InputMeshType::QEType;
268
270
272 : m_Lambda(iLambda)
273 {}
274
275 InputCoordinateType
276 operator()(const InputMeshType * iMesh, InputQEType * iEdge) const override
277 {
280
281 const InputCoordinateType oValue = m_Lambda * conformal(iMesh, iEdge) + (1.0 - m_Lambda) * authalic(iMesh, iEdge);
282
283 return oValue;
284 }
285};
286
294template <typename TInputMesh>
295class ITK_TEMPLATE_EXPORT HarmonicMatrixCoefficients : public MatrixCoefficients<TInputMesh>
296{
297public:
299
300 using InputMeshType = TInputMesh;
301 using InputCoordinateType = typename InputMeshType::CoordinateType;
302#ifndef ITK_FUTURE_LEGACY_REMOVE
303 using InputCoordRepType ITK_FUTURE_DEPRECATED(
304 "ITK 6 discourages using `InputCoordRepType`. Please use `InputCoordinateType` instead!") = InputCoordinateType;
305#endif
306 using InputPointType = typename InputMeshType::PointType;
307 using InputVectorType = typename InputPointType::VectorType;
308 using InputPointIdentifier = typename InputMeshType::PointIdentifier;
309 using InputQEType = typename InputMeshType::QEType;
310
311 static constexpr unsigned int PointDimension = InputPointType::PointDimension;
312
314
316 operator()(const InputMeshType * iMesh, InputQEType * iEdge) const override
317 {
318 const InputPointIdentifier id1 = iEdge->GetOrigin();
319 const InputPointIdentifier id2 = iEdge->GetDestination();
320
321 const InputPointIdentifier idA = iEdge->GetLnext()->GetDestination();
322 const InputPointIdentifier idB = iEdge->GetRnext()->GetOrigin();
323
324 const InputPointType pt1 = iMesh->GetPoint(id1);
325 const InputPointType pt2 = iMesh->GetPoint(id2);
326 const InputPointType ptA = iMesh->GetPoint(idA);
327 const InputPointType ptB = iMesh->GetPoint(idB);
328
329 const InputVectorType v1A = ptA - pt1;
330 const InputVectorType v1B = ptB - pt1;
331 const InputVectorType v12 = pt2 - pt1;
332
333 const InputCoordinateType L1A = v1A * v1A;
334 const InputCoordinateType L1B = v1B * v1B;
335 const InputCoordinateType L12 = v12 * v12;
336
337 const InputCoordinateType L2A = pt2.SquaredEuclideanDistanceTo(ptA);
338 const InputCoordinateType L2B = pt2.SquaredEuclideanDistanceTo(ptB);
339
341
342 const InputCoordinateType AreaA = 0.5 * (cross(v1A, v12).GetNorm());
343 const InputCoordinateType AreaB = 0.5 * (cross(v1B, v12).GetNorm());
344
345 const InputCoordinateType oValue = (L1A + L2A - L12) / AreaA + (L1B + L2B - L12) / AreaB;
346
347 return oValue;
348 }
349};
350} // namespace itk
351#endif
Compute a matrix filled with Authalic Coefficients of the edge, wherever two vertices are connected w...
typename InputMeshType::PointIdentifier InputPointIdentifier
typename InputMeshType::CoordinateType InputCoordinateType
InputCoordinateType operator()(const InputMeshType *iMesh, InputQEType *iEdge) const override
Compute a matrix filed by Conformal Coefficients of the edge wherever two vertices are connected by a...
InputCoordinateType operator()(const InputMeshType *iMesh, InputQEType *iEdge) const override
typename InputMeshType::PointIdentifier InputPointIdentifier
typename InputMeshType::CoordinateType InputCoordinateType
InputCoordinateType operator()(const InputMeshType *iMesh, InputQEType *iEdge) const override
typename InputPointType::VectorType InputVectorType
IntrinsicMatrixCoefficients(const InputCoordinateType &iLambda)
typename InputMeshType::CoordinateType InputCoordinateType
InputCoordinateType operator()(const InputMeshType *iMesh, InputQEType *iEdge) const override
InputCoordinateType operator()(const InputMeshType *iMesh, InputQEType *iEdge) const override
virtual ~MatrixCoefficients()=default
virtual InputCoordinateType operator()(const InputMeshType *iMesh, InputQEType *iEdge) const =0
typename InputMeshType::CoordinateType InputCoordinateType
InputCoordinateType operator()(const InputMeshType *iMesh, InputQEType *iEdge) const override
static CoordinateType Cotangent(const PointType &iA, const PointType &iB, const PointType &iC)
Compute cotangent(iA,iB,iC)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....