Medical Imaging Interaction Toolkit  2016.11.0
Medical Imaging Interaction Toolkit
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
mitkRegistrationObject.h
Go to the documentation of this file.
1 /*===================================================================
2 
3 The Medical Imaging Interaction Toolkit (MITK)
4 
5 Copyright (c) German Cancer Research Center,
6 Division of Medical and Biological Informatics.
7 All rights reserved.
8 
9 This software is distributed WITHOUT ANY WARRANTY; without
10 even the implied warranty of MERCHANTABILITY or FITNESS FOR
11 A PARTICULAR PURPOSE.
12 
13 See LICENSE.txt or http://www.mitk.org for details.
14 
15 ===================================================================*/
16 
17 #ifndef MITKREGISTRATIONOBJECT_H
18 #define MITKREGISTRATIONOBJECT_H
19 
21 
22 #include "mitkBaseData.h"
23 #include "mitkGeometry3D.h"
24 
25 #include "mitkImage.h"
26 
27 namespace mitk
28 {
36 {
37 public:
38 
40  itkFactorylessNewMacro(Self)
41  itkCloneMacro(Self)
42 
43  void SetReferenceGeometry( mitk::Geometry3D::Pointer );
44 
45  void SetReferenceImage( mitk::Image::Pointer );
46 
47  void SetTransformation( mitk::AffineGeometryFrame3D::Pointer );
48 
50  {
51  return m_ReferenceGeometry;
52  }
53 
55  {
56  return m_Transformation;
57  }
58 
59 protected:
61  virtual ~RegistrationObject(){}
62 
67 
69 
70 
71 };
72 
73 }
74 #endif // MITKREGISTRATIONOBJECT_H
itk::SmartPointer< Self > Pointer
Base of all data objects.
Definition: mitkBaseData.h:39
mitk::Geometry3D::Pointer GetReferenceGeometry() const
mitk::AffineGeometryFrame3D::Pointer m_Transformation
mitk::AffineGeometryFrame3D::Pointer GetTransformation() const
DataCollection - Class to facilitate loading/accessing structured data.
#define MITKDIFFUSIONCORE_EXPORT
mitk::Geometry3D::Pointer m_ReferenceGeometry
Reference geometry of the fixed image used for registration computation.
#define mitkClassMacro(className, SuperClassName)
Definition: mitkCommon.h:44
The RegistrationObject class stores all necessary information for image registration.