NorMIT-nav  2023.01.05-dev+develop.0da12
An IGT application
cxFastLandmarkPatientRegistrationWidget.cpp
Go to the documentation of this file.
1 /*=========================================================================
2 This file is part of CustusX, an Image Guided Therapy Application.
3 
4 Copyright (c) SINTEF Department of Medical Technology.
5 All rights reserved.
6 
7 CustusX is released under a BSD 3-Clause license.
8 
9 See Lisence.txt (https://github.com/SINTEFMedtek/CustusX/blob/master/License.txt) for details.
10 =========================================================================*/
11 
13 
14 #include <QVBoxLayout>
15 #include <QPushButton>
16 #include <QTableWidgetItem>
17 #include <QHeaderView>
18 #include <QSlider>
19 #include <QGridLayout>
20 #include <QSpinBox>
21 #include <vtkDoubleArray.h>
22 #include "cxVector3D.h"
23 #include "cxLogger.h"
25 #include "cxLandmarkRep.h"
26 #include "cxView.h"
27 #include "cxRegistrationService.h"
28 #include "cxViewService.h"
29 #include "cxPatientModelService.h"
30 #include "cxViewGroupData.h"
31 #include "cxReporter.h"
32 #include "cxLandmarkListener.h"
33 #include "cxActiveData.h"
34 
35 namespace cx
36 {
37 
38 FastLandmarkPatientRegistrationWidget::FastLandmarkPatientRegistrationWidget(RegServicesPtr services, QWidget* parent, QString objectName, QString windowTitle) :
39  LandmarkPatientRegistrationWidget(services, parent, objectName, windowTitle)
40 {
41 }
42 
43 //The following functions look (almost) exactly like the same functions in PatientLandMarksWidget
45 {
46  mServices->registration()->doFastRegistration_Translation();
48 }
49 
50 }//namespace cx
cxLogger.h
cxActiveData.h
cx
Namespace for all CustusX production code.
Definition: cx_dev_group_definitions.h:13
cxLabeledComboBoxWidget.h
cxViewGroupData.h
cxReporter.h
cxVector3D.h
cxLandmarkListener.h
cx::RegistrationBaseWidget::mServices
RegServicesPtr mServices
Definition: cxRegistrationBaseWidget.h:35
cxFastLandmarkPatientRegistrationWidget.h
cxViewService.h
cxView.h
cxPatientModelService.h
cx::LandmarkRegistrationWidget::updateAverageAccuracyLabel
void updateAverageAccuracyLabel()
Definition: cxLandmarkRegistrationWidget.cpp:312
cx::LandmarkPatientRegistrationWidget
Definition: cxLandmarkPatientRegistrationWidget.h:42
cx::RegServicesPtr
boost::shared_ptr< class RegServices > RegServicesPtr
Definition: cxRegServices.h:20
cx::FastLandmarkPatientRegistrationWidget::performRegistration
virtual void performRegistration()
Definition: cxFastLandmarkPatientRegistrationWidget.cpp:44
cxLandmarkRep.h
cxRegistrationService.h
cx::FastLandmarkPatientRegistrationWidget::FastLandmarkPatientRegistrationWidget
FastLandmarkPatientRegistrationWidget(RegServicesPtr services, QWidget *parent, QString objectName, QString windowTitle)
Definition: cxFastLandmarkPatientRegistrationWidget.cpp:38