NonSymmetricWeightsSurfaceMapper.h
1 /*
2  * Medical Image Registration ToolKit (MIRTK)
3  *
4  * Copyright 2016 Imperial College London
5  * Copyright 2016 Andreas Schuh
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19 
20 #ifndef MIRTK_NonSymmetricWeightsSurfaceMapper_H
21 #define MIRTK_NonSymmetricWeightsSurfaceMapper_H
22 
23 #include "mirtk/LinearFixedBoundarySurfaceMapper.h"
24 
25 
26 namespace mirtk {
27 
28 
29 /**
30  * Obtains surface map as the solution of a non-symmetric system of linear equations
31  */
33 {
34  mirtkAbstractMacro(NonSymmetricWeightsSurfaceMapper);
35 
36  // ---------------------------------------------------------------------------
37  // Attributes
38 
39  /// Copy attributes of this class from another instance
40  void CopyAttributes(const NonSymmetricWeightsSurfaceMapper &);
41 
42  // ---------------------------------------------------------------------------
43  // Construction/Destruction
44 
45 public:
46 
47  /// Default constructor
49 
50  /// Copy constructor
52 
53  /// Assignment operator
55 
56 public:
57 
58  /// Destructor
60 
61  // ---------------------------------------------------------------------------
62  // Execution
63 
64  /// Construct and solve (non-symmetric) system of linear equations
65  virtual void ComputeMap();
66 
67 protected:
68 
69  /// Weight of directed edge (i, j)
70  ///
71  /// \param[in] i Index of start node.
72  /// \param[in] j Index of end node.
73  ///
74  /// \returns Weight of directed edge (i, j).
75  ///
76  /// \note This function must be overridden when the base class implementation
77  /// of the Weights function is used. Alternatively, override Weights function.
78  virtual double Weight(int i, int j) const;
79 
80  /// Weights of edges starting at node i
81  ///
82  /// \param[in] i Index of central node.
83  /// \param[in] j Indices of adjacent nodes.
84  /// \param[out] w Weights of \p d_i edges (i, j).
85  /// \param[in] d Number of adjacent nodes, i.e., node degree.
86  ///
87  /// \note The default implementation simply calls the Weight function to compute
88  /// the weight value for each edge independently. When the computation of
89  /// edge weights requires common intermediate computations, it is more
90  /// efficient to compute all edge weights in an overridden subclass
91  /// implementation of this function. The Weight function is then unused.
92  virtual void Weights(int i, const int *j, double *w, int d) const;
93 
94 };
95 
96 
97 } // namespace mirtk
98 
99 #endif // MIRTK_NonSymmetricWeightsSurfaceMapper_H
virtual ~NonSymmetricWeightsSurfaceMapper()
Destructor.
Definition: IOConfig.h:41
virtual void Weights(int i, const int *j, double *w, int d) const
NonSymmetricWeightsSurfaceMapper()
Default constructor.
virtual void ComputeMap()
Construct and solve (non-symmetric) system of linear equations.
NonSymmetricWeightsSurfaceMapper & operator=(const NonSymmetricWeightsSurfaceMapper &)
Assignment operator.
virtual double Weight(int i, int j) const