NifTK  16.4.1 - 0798f20
CMIC's Translational Medical Imaging Platform
niftkSurfaceRegServiceI.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 niftkSurfaceRegServiceI_h
16 #define niftkSurfaceRegServiceI_h
17 
18 #include <niftkIGIServicesExports.h>
19 
20 #include <mitkServiceInterface.h>
21 #include <mitkDataNode.h>
22 #include <vtkMatrix4x4.h>
23 #include <usServiceProperties.h>
24 
25 namespace niftk
26 {
27 
34 class NIFTKIGISERVICES_EXPORT SurfaceRegServiceI
35 {
36 
37 public:
38 
52  virtual double Register(const mitk::DataNode::Pointer fixedDataSet,
53  const mitk::DataNode::Pointer movingDataSet,
54  vtkMatrix4x4& matrix) const = 0;
55 
56 protected:
58  virtual ~SurfaceRegServiceI();
59 
60 private:
61  SurfaceRegServiceI(const SurfaceRegServiceI&); // deliberately not implemented
62  SurfaceRegServiceI& operator=(const SurfaceRegServiceI&); // deliberately not implemented
63 };
64 
65 } // end namespace
66 
67 MITK_DECLARE_SERVICE_INTERFACE(niftk::SurfaceRegServiceI, "uk.ac.ucl.cmic.SurfaceRegServiceI");
68 
69 #endif
GLuint GLenum matrix
Definition: glew.h:12775
MITK_DECLARE_SERVICE_INTERFACE(niftk::SurfaceRegServiceI,"uk.ac.ucl.cmic.SurfaceRegServiceI")
Interface for a Surface Based Registration Service.
Definition: niftkSurfaceRegServiceI.h:34
Definition: niftkExceptionObject.h:21