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.
34 lines
700 B
C++
34 lines
700 B
C++
#ifndef NUM_TEMPLATE_BUILD_H
|
|
#define NUM_TEMPLATE_BUILD_H
|
|
|
|
#include <QWidget>
|
|
#include <QMessageBox>
|
|
|
|
#include <opencv2/core.hpp>
|
|
|
|
#include "dataPreprocessing.h"
|
|
#include "commonDefine.h"
|
|
|
|
#include "ui_QNumTemplateBuild.h"
|
|
class QNumTemplateBuild : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
QNumTemplateBuild(QWidget *parent = Q_NULLPTR);
|
|
//~QNumTemplateBuild();
|
|
void setDataProcessObj(std::shared_ptr<dataPreProcessing> dp_ptr)
|
|
{
|
|
m_pDataProcess = dp_ptr;
|
|
}
|
|
|
|
//signals:
|
|
|
|
private:
|
|
Q_SLOT void onButtonClick();
|
|
//Q_SLOT void onComboxCurrentIndexChanged(const QString& modelName);
|
|
std::shared_ptr<dataPreProcessing> m_pDataProcess;
|
|
|
|
Ui::QNumTemplateBuildClass ui;
|
|
};
|
|
#endif // !NUM_TEMPLATE_BUILD_H
|