NifTK  16.4.1 - 0798f20
CMIC's Translational Medical Imaging Platform
niftkICPRegService.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 niftkICPRegService_h
16 #define niftkICPRegService_h
17 
21 
22 namespace niftk
23 {
24 
31 {
32 public:
33 
34  ICPRegService();
36 
40  virtual double Register(const mitk::DataNode::Pointer fixedDataSet,
41  const mitk::DataNode::Pointer movingDataSet,
42  vtkMatrix4x4& matrix) const override;
43 
47  virtual void Configure(const us::ServiceProperties& properties) override;
48 
49 private:
50 
51  ICPRegService(const ICPRegService&); // deliberately not implemented
52  ICPRegService& operator=(const ICPRegService&); // deliberately not implemented
53 
54  niftk::ICPBasedRegistration::Pointer m_Registerer;
55 };
56 
57 } // end namespace
58 
59 #endif
ICPRegService()
Definition: niftkICPRegService.cxx:23
Interface to describe how any service should be configured.
Definition: niftkServiceConfigurationI.h:28
Implements niftk::SurfaceRegServiceI using niftk::ICPBasedRegistration.
Definition: niftkICPRegService.h:29
GLuint GLenum matrix
Definition: glew.h:12775
virtual void Configure(const us::ServiceProperties &properties) override
Definition: niftkICPRegService.cxx:37
~ICPRegService()
Definition: niftkICPRegService.cxx:30
Interface for a Surface Based Registration Service.
Definition: niftkSurfaceRegServiceI.h:34
Definition: niftkExceptionObject.h:21
virtual double Register(const mitk::DataNode::Pointer fixedDataSet, const mitk::DataNode::Pointer movingDataSet, vtkMatrix4x4 &matrix) const override
Definition: niftkICPRegService.cxx:75