This repository has been archived by the owner on Jul 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
dialogshowestimated.h
86 lines (71 loc) · 1.79 KB
/
dialogshowestimated.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#ifndef DIALOGSHOWESTIMATED_H
#define DIALOGSHOWESTIMATED_H
#include <QDialog>
#include "datadialogshowestimated.h"
#include <QtWidgets>
#include <iostream>
//#include "mainwindow.h"
class QDialogButtonBox;
class QGroupBox;
class QLabel;
class QLineEdit;
class QPushButton;
class QTextEdit;
class QTextBox;
class MainWindow;
class DialogShowEstimated : public QDialog
{
Q_OBJECT
public:
DialogShowEstimated(QWidget *parent = 0);
//DialogScalaTraslaRota(QWidget *parent = 0, DataDialogScalaTraslaRota* aModel );
MainWindow *parent;
private:
QLabel *labelTitle;
QLabel *label2;
QLabel *labelGaussNoise;
QLabel *labelCosmicNoise;
QLineEdit *saveFile;
QLabel *labScaleX;
QLineEdit *scaleX;
QLabel *labScaleY;
QLineEdit *scaleY;
QLabel *labScaleZ;
QLineEdit *scaleZ;
QLabel *labTraslaX;
QLineEdit *traslaX;
QLabel *labTraslaY;
QLineEdit *traslaY;
QLabel *labTraslaZ;
QLineEdit *traslaZ;
QLabel *labTimeOffset;
QLineEdit *timeOffset;
QLabel *labRMax;
QLineEdit *rMax; // to store max correlation value, the one that indicates which is the value of the offset
QLabel *labYaw;
QLineEdit *yaw;
QLabel *labPitch;
QLineEdit *pitch;
QLabel *labRoll;
QLineEdit *roll;
QLabel *labRMSE;
QLineEdit *RMSE;
QLabel *labRotationMatrix;
QTextEdit *rotationMatrix;
QLabel *labPcaA;
QTextEdit *pcaA;
QLabel *labPcaB;
QTextEdit *pcaB;
QLabel *labFrequency;
QTextEdit *frequency;
QPushButton *buttonOK;
QPushButton *buttonCancel;
DataDialogShowEstimated* dialogModel;
public slots:
void onOK();
void onCancel();
public:
void setDataDialog(DataDialogShowEstimated* aModel);
DataDialogShowEstimated* getDataDialog();
};
#endif // DIALOGDATAESTIMATED_H