NifTK  16.4.1 - 0798f20
CMIC's Translational Medical Imaging Platform
QmitkRMSErrorWidget.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 QmitkRMSErrorWidget_h
16 #define QmitkRMSErrorWidget_h
17 
18 #include "niftkIGIGuiExports.h"
19 #include "ui_QmitkRMSErrorWidget.h"
20 #include <QWidget>
21 #include <mitkDataStorage.h>
22 
29 class NIFTKIGIGUI_EXPORT QmitkRMSErrorWidget : public QWidget, public Ui_QmitkRMSErrorWidget
30 {
31  Q_OBJECT
32 
33 public:
34 
35  QmitkRMSErrorWidget(QWidget *parent = 0);
36  virtual ~QmitkRMSErrorWidget();
37 
38  void SetDataStorage(const mitk::DataStorage* dataStorage);
39 
47  void Update();
48 
49 private slots:
50 
51 private:
52  mitk::DataStorage::Pointer m_DataStorage;
53 };
54 
55 #endif // QmitkRMSErrorWidget_h
Simple helper widget to allow user to select targets and moving points, and every time you set a tran...
Definition: QmitkRMSErrorWidget.h:29