You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
712 B
C++
41 lines
712 B
C++
#ifndef _QALGPARAMDLG_H_
|
|
#define _QALGPARAMDLG_H_
|
|
|
|
#include <QWidget>
|
|
|
|
#include "QExposureTimeDlg.h"
|
|
#include "ui_QAlgParamDlg.h"
|
|
|
|
|
|
class QAlgParamDlg : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QAlgParamDlg(QWidget *parent = Q_NULLPTR);
|
|
~QAlgParamDlg();
|
|
Q_SLOT void onButtonClicked();
|
|
|
|
signals:
|
|
void sgParamChange();
|
|
void sgExpsChange();
|
|
|
|
protected:
|
|
Q_SLOT void onChangeBG();
|
|
Q_SLOT void onChangeExps();
|
|
virtual void showEvent(QShowEvent *event);
|
|
virtual void timerEvent(QTimerEvent *event);
|
|
virtual void changeEvent(QEvent *event);
|
|
|
|
void setParam();
|
|
void getParam();
|
|
|
|
private:
|
|
Ui::QAlgParamDlg ui;
|
|
int m_timeID{ 0 };
|
|
QExposureTimeDlg* m_pExposureTimeDlg{ nullptr };//算法调参页面
|
|
|
|
};
|
|
|
|
#endif
|