|
|
|
|
@ -23,9 +23,9 @@
|
|
|
|
|
#include <QProcess>
|
|
|
|
|
#include "lpCryptokey.h"
|
|
|
|
|
|
|
|
|
|
#define VERSION_HUB "3.0.1.7"
|
|
|
|
|
#define VERSION_HUB "3.0.2.0"
|
|
|
|
|
#define VERSION_ALG "3.0.1.5"
|
|
|
|
|
#define UPDATE_TIME "2021-10-09"
|
|
|
|
|
#define UPDATE_TIME "2021-11-24"
|
|
|
|
|
|
|
|
|
|
#pragma execution_character_set("utf-8")
|
|
|
|
|
lpMainWin::lpMainWin(QWidget *parent)
|
|
|
|
|
@ -587,6 +587,9 @@ void lpMainWin::INewCameraImage(const QString& camKey, QImage img)
|
|
|
|
|
/*多线程发送算法结果*/
|
|
|
|
|
void lpMainWin::IVariantMapToUI(const QString& camKey, const QVariantMap& vMap)
|
|
|
|
|
{
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
m_glbalRatio = 0;
|
|
|
|
|
emit(sgShowImgState(tr("显示识别结果")));
|
|
|
|
|
Result2Ui *pResult = (Result2Ui*)vMap.value("result").toLongLong();
|
|
|
|
|
@ -708,6 +711,11 @@ void lpMainWin::IVariantMapToUI(const QString& camKey, const QVariantMap& vMap)
|
|
|
|
|
m_pCtrl->saveResult(pResult);
|
|
|
|
|
|
|
|
|
|
delete pResult;
|
|
|
|
|
}
|
|
|
|
|
catch(...)
|
|
|
|
|
{
|
|
|
|
|
qWarning() << "dump result " << __FUNCTION__;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*多线程获取算法参数*/
|
|
|
|
|
|