NifTK  16.4.1 - 0798f20
CMIC's Translational Medical Imaging Platform
niftkPointRegServiceUsingSVD.h
Go to the documentation of this file.
1 /*=============================================================================
2 
3  NifTK: A software platform for medical image computing.
4 
5  Copyright (c) University College London (UCL). All rights reserved.
6 
7  This software is distributed WITHOUT ANY WARRANTY; without even
8  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
9  PURPOSE.
10 
11  See LICENSE.txt in the top level directory for details.
12 
13 =============================================================================*/
14 
15 #ifndef niftkPointRegServiceUsingSVD_h
16 #define niftkPointRegServiceUsingSVD_h
17 
18 #include <niftkPointRegServiceI.h>
19 
20 namespace niftk
21 {
22 
28 {
29 public:
30 
33 
38  virtual double Register(const mitk::PointSet::Pointer fixedPoints,
39  const mitk::PointSet::Pointer movingPoints,
40  vtkMatrix4x4& matrix) const override;
41 
42 private:
43 
44  PointRegServiceUsingSVD(const PointRegServiceUsingSVD&); // deliberately not implemented
45  PointRegServiceUsingSVD& operator=(const PointRegServiceUsingSVD&); // deliberately not implemented
46 
47 };
48 
49 } // end namespace
50 
51 #endif
virtual double Register(const mitk::PointSet::Pointer fixedPoints, const mitk::PointSet::Pointer movingPoints, vtkMatrix4x4 &matrix) const override
Definition: niftkPointRegServiceUsingSVD.cxx:36
Implements niftk::PointRegServiceI using niftk::PointBasedRegistrationUsingSVD.
Definition: niftkPointRegServiceUsingSVD.h:27
~PointRegServiceUsingSVD()
Definition: niftkPointRegServiceUsingSVD.cxx:29
GLuint GLenum matrix
Definition: glew.h:12775
Interface for a Point Based Registration Service.
Definition: niftkPointRegServiceI.h:33
Definition: niftkExceptionObject.h:21
PointRegServiceUsingSVD()
Definition: niftkPointRegServiceUsingSVD.cxx:22