MITK-IGT
IGT Extension of MITK
Loading...
Searching...
No Matches
QmitkToFMESAParameterWidget.h
Go to the documentation of this file.
1/*============================================================================
2
3The Medical Imaging Interaction Toolkit (MITK)
4
5Copyright (c) German Cancer Research Center (DKFZ)
6All rights reserved.
7
8Use of this source code is governed by a 3-clause BSD license that can be
9found in the LICENSE file.
10
11============================================================================*/
12
13#ifndef QmitkToFMESAParameterWidget_h
14#define QmitkToFMESAParameterWidget_h
15
16#include <MitkToFUIExports.h>
17#include "ui_QmitkToFMESAParameterWidgetControls.h"
18
19//QT headers
20#include <QWidget>
21
22//mitk headers
23#include "mitkToFImageGrabber.h"
24
32class MITKTOFUI_EXPORT QmitkToFMESAParameterWidget :public QWidget
33{
34
35 //this is needed for all Qt objects that should have a MOC object (everything that derives from QObject)
36 Q_OBJECT
37
38 public:
39
40 static const std::string VIEW_ID;
41
42 QmitkToFMESAParameterWidget(QWidget* p = nullptr, Qt::WindowFlags f1 = {});
44
45 /* @brief This method is part of the widget an needs not to be called seperately. */
46 virtual void CreateQtPartControl(QWidget *parent);
47 /* @brief This method is part of the widget an needs not to be called seperately. (Creation of the connections of main and control widget.)*/
48 virtual void CreateConnections();
49
54 mitk::ToFImageGrabber* GetToFImageGrabber();
55
59 void SetToFImageGrabber(mitk::ToFImageGrabber* aToFImageGrabber);
60
64 void ActivateAllParameters();
65
66 signals:
67
89
90 protected slots:
91
95 void OnChangeIntegrationTimeSpinBox(int value);
99 void OnChangeModulationFrequencyComboBox(int index);
100
101 void OnChangeFPNCheckBox(bool checked);
102
103 void OnChangeConvGrayCheckBox(bool checked);
104
105 void OnChangeMedianCheckBox(bool checked);
106
107 void OnChangeANFCheckBox(bool checked);
108
109 protected:
110
111 Ui::QmitkToFMESAParameterWidgetControls* m_Controls;
112
114
117
118 private:
119
120};
121
122#endif
Widget allowing to connect to different ToF / range cameras (located in module ToFProcessing)
int m_IntegrationTime
member for the current integration time of the ToF device
int m_ModulationFrequency
member for the current modulation frequency of the ToF device
void ToFCameraStart()
signal that is emitted when the ToF camera is started
Ui::QmitkToFMESAParameterWidgetControls * m_Controls
member holding the UI elements of this widget
mitk::ToFImageGrabber * m_ToFImageGrabber
member holding the current ToFImageGrabber
void ToFCameraSelected(int)
signal that is emitted when a ToF camera is selected in the combo box
void ToFCameraConnected()
This signal is sent if the user has connected the TOF camera. The ToFImageGrabber is now availiable i...
void ToFCameraDisconnected()
This signal is sent if the user has disconnect the TOF camera.
void ToFCameraStop()
signal that is emitted when the ToF camera is stopped
Image source providing ToF images. Interface for filters provided in ToFProcessing module.