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.
32 lines
458 B
C++
32 lines
458 B
C++
#ifndef _H_RESULT2UI_H_
|
|
#define _H_RESULT2UI_H_
|
|
|
|
#include "qpixmap.h"
|
|
#include "qimage.h"
|
|
class Result2Ui
|
|
{
|
|
public:
|
|
Result2Ui() {
|
|
m_strModel = "";
|
|
m_dScore = 0;
|
|
m_dDiameter = 0;
|
|
m_dThickness = 0;
|
|
m_dRunTime = 0;
|
|
m_dMinDis = 1000;
|
|
m_channel = 0;
|
|
};
|
|
|
|
double m_dDiameter;
|
|
double m_dThickness;
|
|
double m_dRunTime;
|
|
QPixmap m_pixResult;
|
|
QPixmap m_pixSrc;
|
|
QString m_strModel;
|
|
double m_dScore;
|
|
double m_dMinDis;
|
|
int m_channel;
|
|
};
|
|
|
|
#endif
|
|
|