NifTK  16.4.1 - 0798f20
CMIC's Translational Medical Imaging Platform
mitkTrackedImage.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 mitkTrackedImage_h
16 #define mitkTrackedImage_h
17 
18 #include "niftkIGIExports.h"
19 #include <mitkDataStorage.h>
20 #include <vtkMatrix4x4.h>
21 #include <mitkDataNode.h>
22 #include <itkObject.h>
23 #include <itkObjectFactoryBase.h>
24 
25 namespace mitk {
26 
31 class NIFTKIGI_EXPORT TrackedImage : public itk::Object
32 {
33 public:
34 
35  mitkClassMacroItkParent(TrackedImage, itk::Object)
36  itkNewMacro(TrackedImage)
37 
38 
41  void Update(const mitk::DataNode::Pointer imageNode,
42  const mitk::DataNode::Pointer trackingSensorToTrackerNode,
43  const vtkMatrix4x4& imageToTrackingSensor,
44  const vtkMatrix4x4& emToOptical
45  );
46 
47 protected:
48 
49  TrackedImage(); // Purposefully hidden.
50  virtual ~TrackedImage(); // Purposefully hidden.
51 
52  TrackedImage(const TrackedImage&); // Purposefully not implemented.
53  TrackedImage& operator=(const TrackedImage&); // Purposefully not implemented.
54 
55 private:
56 
57 }; // end class
58 
59 } // end namespace
60 
61 #endif
Definition: ReceptorMemberCommandTest.cxx:25
Command used to update the position of a tracked image.
Definition: mitkTrackedImage.h:31