NifTK  16.4.1 - 0798f20
CMIC's Translational Medical Imaging Platform
niftkPointRegServiceI.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 niftkPointRegServiceI_h
16 #define niftkPointRegServiceI_h
17 
18 #include <niftkIGIServicesExports.h>
19 
20 #include <mitkServiceInterface.h>
21 #include <mitkPointSet.h>
22 #include <vtkMatrix4x4.h>
23 
24 namespace niftk
25 {
26 
33 class NIFTKIGISERVICES_EXPORT PointRegServiceI
34 {
35 
36 public:
37 
43  virtual double Register(const mitk::PointSet::Pointer fixedPoints,
44  const mitk::PointSet::Pointer movingPoints,
45  vtkMatrix4x4& matrix) const = 0;
46 
47 protected:
49  virtual ~PointRegServiceI();
50 
51 private:
52  PointRegServiceI(const PointRegServiceI&); // deliberately not implemented
53  PointRegServiceI& operator=(const PointRegServiceI&); // deliberately not implemented
54 };
55 
56 } // end namespace
57 
58 MITK_DECLARE_SERVICE_INTERFACE(niftk::PointRegServiceI, "uk.ac.ucl.cmic.PointRegServiceI");
59 
60 #endif
MITK_DECLARE_SERVICE_INTERFACE(niftk::PointRegServiceI,"uk.ac.ucl.cmic.PointRegServiceI")
GLuint GLenum matrix
Definition: glew.h:12775
Interface for a Point Based Registration Service.
Definition: niftkPointRegServiceI.h:33
Definition: niftkExceptionObject.h:21