Compare commits
No commits in common. "SldPredict" and "master" have entirely different histories.
SldPredict
...
master
333
DEM_GeneRas/DEM_GeneRas.cpp
Normal file
333
DEM_GeneRas/DEM_GeneRas.cpp
Normal file
@ -0,0 +1,333 @@
|
|||||||
|
#include "DEM_GeneRas.h"
|
||||||
|
|
||||||
|
#include <qgsrasterlayer.h>
|
||||||
|
#include <qgsvectorlayer.h>
|
||||||
|
#include <qgsmapcanvas.h>
|
||||||
|
|
||||||
|
#include <QSettings>
|
||||||
|
|
||||||
|
VegePredict::VegePredict()
|
||||||
|
{
|
||||||
|
//ui.setupUi(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
VegePredict::~VegePredict()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
QString VegePredict::PannelName()
|
||||||
|
{
|
||||||
|
return QString::fromLocal8Bit("");
|
||||||
|
}
|
||||||
|
|
||||||
|
QString VegePredict::CategoryName()
|
||||||
|
{
|
||||||
|
return QString::fromLocal8Bit("DEM模块");
|
||||||
|
}
|
||||||
|
|
||||||
|
QString VegePredict::EnglishName()
|
||||||
|
{
|
||||||
|
return QString::fromLocal8Bit("DEM_Module");
|
||||||
|
}
|
||||||
|
|
||||||
|
QString VegePredict::ChineseName()
|
||||||
|
{
|
||||||
|
return QString::fromLocal8Bit("植被预测");
|
||||||
|
}
|
||||||
|
|
||||||
|
QString VegePredict::Information()
|
||||||
|
{
|
||||||
|
return QString::fromLocal8Bit("植被预测");
|
||||||
|
}
|
||||||
|
|
||||||
|
QString VegePredict::IconPath()
|
||||||
|
{
|
||||||
|
return ":/DEM_GeneRas/resources/dem_ras.svg";
|
||||||
|
}
|
||||||
|
|
||||||
|
QWidget* VegePredict::CenterWidget()
|
||||||
|
{
|
||||||
|
//QString str = QString("%1->%2,thread id:%3").arg(__FILE__).arg(__FUNCTION__).arg((int)QThread::currentThreadId());
|
||||||
|
//qDebug() << str;
|
||||||
|
|
||||||
|
QString gdal_path = qApp->applicationDirPath().toLocal8Bit() + "/share/gdal";
|
||||||
|
QString pro_lib_path = qApp->applicationDirPath().toLocal8Bit() + "/share/proj";
|
||||||
|
qputenv("GDAL_DATA", gdal_path.toLocal8Bit());
|
||||||
|
qputenv("PROJ_LIB", pro_lib_path.toLocal8Bit());
|
||||||
|
|
||||||
|
bool showWin = false;
|
||||||
|
if (myWidget == nullptr)
|
||||||
|
{
|
||||||
|
myWidget = new QDialog();
|
||||||
|
showWin = true;
|
||||||
|
qDebug() << "new QDialog()";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
qDebug() << "already have myWidget";
|
||||||
|
//激活窗口并提升至顶层
|
||||||
|
myWidget->activateWindow();
|
||||||
|
myWidget->raise();
|
||||||
|
|
||||||
|
return myWidget;
|
||||||
|
}
|
||||||
|
ui.setupUi(myWidget);
|
||||||
|
|
||||||
|
myWidget->setWindowTitle(QString::fromLocal8Bit("植被预测"));
|
||||||
|
myWidget->setWindowFlags(Qt::CustomizeWindowHint | Qt::WindowCloseButtonHint);
|
||||||
|
myWidget->setWindowIcon(QIcon(":/DEM_GeneRas/resources/dem_ras.svg"));
|
||||||
|
myWidget->setAttribute(Qt::WA_QuitOnClose, false);
|
||||||
|
|
||||||
|
myWidget->setAttribute(Qt::WA_DeleteOnClose);
|
||||||
|
connect(myWidget, &QDialog::destroyed, this, [=]() {
|
||||||
|
qDebug() << "----DEM Predict window close----";
|
||||||
|
|
||||||
|
QDir pluginsDir = QDir(qApp->applicationDirPath());
|
||||||
|
if (pluginsDir.cd("srsplugins\\DemModel"))
|
||||||
|
{
|
||||||
|
QString strConfigPath = pluginsDir.absoluteFilePath("dem_config.ini");
|
||||||
|
QFile f(strConfigPath);
|
||||||
|
if (f.exists())
|
||||||
|
{
|
||||||
|
WriteConfigPaths(strConfigPath);
|
||||||
|
f.close();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mWorkThread != nullptr)
|
||||||
|
{
|
||||||
|
mWorkThread->requestInterruption();//请求线程中断
|
||||||
|
mWorkThread->quit();
|
||||||
|
mWorkThread->wait();//调用wait后先调用finished信号对应的槽函数,执行完成后再往下走
|
||||||
|
mWorker->on_cancel();
|
||||||
|
mWorkThread = nullptr;//mWorkThread, &QThread::finished, mWorkThread, &QObject::deleteLater,不需要delete
|
||||||
|
mWorker = nullptr;//mWorkThread, &QThread::finished, mWorker, &QObject::deleteLater
|
||||||
|
}
|
||||||
|
myWidget->close();
|
||||||
|
myWidget = nullptr;
|
||||||
|
//qDebug() << "--destroyed";
|
||||||
|
});
|
||||||
|
|
||||||
|
connect(ui.pbt_DOM, &QPushButton::clicked, this, &VegePredict::chooseDomPath);
|
||||||
|
connect(ui.pbt_DSM, &QPushButton::clicked, this, &VegePredict::chooseDsmPath);
|
||||||
|
//connect(ui.pbt_Label, &QPushButton::pressed, this, &VegePredict::chooseLabelPath);
|
||||||
|
connect(ui.pbt_PRE, &QPushButton::clicked, this, &VegePredict::choosePreDir);
|
||||||
|
connect(ui.pbt_Moudle, &QPushButton::clicked, this, &VegePredict::chooseMouleFile);
|
||||||
|
|
||||||
|
connect(ui.pushButton_ok, &QPushButton::clicked, this, &VegePredict::readAndStart);
|
||||||
|
connect(ui.pushButton_cancel, &QPushButton::clicked, this, &VegePredict::pbCancel);
|
||||||
|
|
||||||
|
ui.progressBar->setTextVisible(true);
|
||||||
|
ui.progressBar->setRange(0, 100);
|
||||||
|
|
||||||
|
QFile qssFile(":/DEM_GeneRas/DEM_GeneRas.qss");
|
||||||
|
qssFile.open(QFile::ReadOnly); //以只读方式打开
|
||||||
|
if (qssFile.isOpen())
|
||||||
|
{
|
||||||
|
QString qss = QLatin1String(qssFile.readAll());
|
||||||
|
myWidget->setStyleSheet(qss);
|
||||||
|
qssFile.close();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
qDebug() << "无法打开文件";
|
||||||
|
|
||||||
|
QDir pluginsDir = QDir(qApp->applicationDirPath());
|
||||||
|
if (pluginsDir.cd("srsplugins\\DemModel"))
|
||||||
|
{
|
||||||
|
QString strConfigPath = pluginsDir.absoluteFilePath("dem_config.ini");
|
||||||
|
QFile f(strConfigPath);
|
||||||
|
if (f.exists())
|
||||||
|
{
|
||||||
|
ReadConfigHistoryPaths(strConfigPath);
|
||||||
|
f.close();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (showWin)
|
||||||
|
myWidget->show();
|
||||||
|
|
||||||
|
return myWidget;
|
||||||
|
}
|
||||||
|
|
||||||
|
void VegePredict::startWorkThread()
|
||||||
|
{
|
||||||
|
if (mWorker != nullptr)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
mWorkThread = new QThread();
|
||||||
|
mWorker = new WorkThreadObject();
|
||||||
|
mWorker->moveToThread(mWorkThread);
|
||||||
|
connect(mWorkThread, &QThread::finished, mWorkThread, &QObject::deleteLater);
|
||||||
|
connect(mWorkThread, &QThread::finished, mWorker, &QObject::deleteLater);
|
||||||
|
connect(mWorker, &WorkThreadObject::process, myWidget, [=](int value) {ui.progressBar->setValue(value); });
|
||||||
|
connect(mWorker, &WorkThreadObject::addDataToMap, this, &VegePredict::addMap);
|
||||||
|
connect(mWorker, &WorkThreadObject::addShpDataToMap, this, &VegePredict::openResultData);
|
||||||
|
connect(this, &VegePredict::killChildThread, mWorker, &WorkThreadObject::on_cancel);
|
||||||
|
connect(this, &VegePredict::startTiffToShp, mWorker, &WorkThreadObject::runFormatConvert);
|
||||||
|
|
||||||
|
connect(this, &VegePredict::start, mWorker, &WorkThreadObject::runPredictWork);
|
||||||
|
mWorkThread->start();
|
||||||
|
}
|
||||||
|
|
||||||
|
void VegePredict::chooseDomPath()
|
||||||
|
{
|
||||||
|
QString dirDom = QFileDialog::getExistingDirectory(ui.pbt_DOM, QString::fromLocal8Bit("选择输入DOM文件路径"), "");
|
||||||
|
if (dirDom != "")
|
||||||
|
ui.line_DOM->setText(dirDom);
|
||||||
|
}
|
||||||
|
|
||||||
|
void VegePredict::chooseDsmPath()
|
||||||
|
{
|
||||||
|
QString dirDsm = QFileDialog::getExistingDirectory(ui.pbt_DSM, QString::fromLocal8Bit("选择输入Slope文件路径"), "");
|
||||||
|
if (dirDsm != "")
|
||||||
|
ui.line_DSM->setText(dirDsm);
|
||||||
|
}
|
||||||
|
|
||||||
|
void VegePredict::choosePreDir()
|
||||||
|
{
|
||||||
|
QString dirPre = QFileDialog::getExistingDirectory(ui.pbt_PRE, QString::fromLocal8Bit("选择预测结果输出文件路径"), "");
|
||||||
|
if (dirPre != "")
|
||||||
|
ui.line_PRE->setText(dirPre);
|
||||||
|
}
|
||||||
|
|
||||||
|
void VegePredict::chooseMouleFile()
|
||||||
|
{
|
||||||
|
QString dirPre = QFileDialog::getOpenFileName(ui.pbt_Moudle, QString::fromLocal8Bit("选择模型文件"), "", "*.pth");
|
||||||
|
if (dirPre != "")
|
||||||
|
ui.line_Moudle->setText(dirPre);
|
||||||
|
}
|
||||||
|
|
||||||
|
void VegePredict::addMap()
|
||||||
|
{
|
||||||
|
QMessageBox mess(QMessageBox::NoIcon,
|
||||||
|
QString::fromLocal8Bit("植被预测结束"),
|
||||||
|
QString::fromLocal8Bit("将对如下路径中结果进行转矢量处理:\n") + ui.line_PRE->text(),
|
||||||
|
QMessageBox::Ok, NULL);
|
||||||
|
mess.setWindowFlags(Qt::Drawer);
|
||||||
|
mess.setButtonText(QMessageBox::Ok, QString::fromLocal8Bit("确认"));
|
||||||
|
int result = mess.exec();
|
||||||
|
switch (result)
|
||||||
|
{
|
||||||
|
case QMessageBox::Ok:
|
||||||
|
emit startTiffToShp(ui.line_PRE->text(), ui.line_DSM->text());
|
||||||
|
ui.label_process->setText(QString::fromLocal8Bit("转矢量进度:"));
|
||||||
|
ui.progressBar->setValue(0);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void VegePredict::ReadConfigHistoryPaths(QString strPath)
|
||||||
|
{
|
||||||
|
QSettings configIni(strPath, QSettings::IniFormat);
|
||||||
|
|
||||||
|
//打开标题为:[DemPredict] 的组
|
||||||
|
configIni.beginGroup("DemPredict");
|
||||||
|
|
||||||
|
ui.line_DOM->setText(configIni.value("SrcDom").toString());
|
||||||
|
ui.line_DSM->setText(configIni.value("SrcDsm").toString());
|
||||||
|
ui.line_PRE->setText(configIni.value("PredictResult").toString());
|
||||||
|
|
||||||
|
configIni.endGroup();//关闭组
|
||||||
|
}
|
||||||
|
void VegePredict::WriteConfigPaths(QString strPath)
|
||||||
|
{
|
||||||
|
QSettings configIni(strPath, QSettings::IniFormat);
|
||||||
|
configIni.setIniCodec("utf-8");
|
||||||
|
//打开标题为:[DemPredict] 的组
|
||||||
|
configIni.beginGroup("DemPredict");
|
||||||
|
|
||||||
|
//更新输入DOM路径
|
||||||
|
QString temp = ui.line_DOM->text();
|
||||||
|
if (temp != "")
|
||||||
|
configIni.setValue("SrcDom", temp);
|
||||||
|
//更新输入DSM路径
|
||||||
|
temp = ui.line_DSM->text();
|
||||||
|
if (temp != "")
|
||||||
|
configIni.setValue("SrcDsm", temp);
|
||||||
|
//更新输出结果路径
|
||||||
|
temp = ui.line_PRE->text();
|
||||||
|
if (temp != "")
|
||||||
|
configIni.setValue("PredictResult", temp);
|
||||||
|
|
||||||
|
configIni.endGroup();//关闭组
|
||||||
|
}
|
||||||
|
|
||||||
|
void VegePredict::readAndStart()
|
||||||
|
{
|
||||||
|
QString dirDOM = ui.line_DOM->text();
|
||||||
|
QString dirDSM = ui.line_DSM->text();
|
||||||
|
QString dirPRE = ui.line_PRE->text();
|
||||||
|
QString fileMoudle = ui.line_Moudle->text();
|
||||||
|
|
||||||
|
ui.progressBar->setValue(0);
|
||||||
|
|
||||||
|
if (dirDOM == "" || dirDSM == "" || dirPRE == "" || fileMoudle == "")
|
||||||
|
{
|
||||||
|
QMessageBox mess(QMessageBox::NoIcon, QString::fromLocal8Bit("错误"), QString::fromLocal8Bit("请检查输入输出文件或路径"));
|
||||||
|
mess.setWindowFlags(Qt::Drawer);
|
||||||
|
int result = mess.exec();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
//startObjThread();
|
||||||
|
if (mWorkThread == nullptr)
|
||||||
|
{
|
||||||
|
qDebug() << "--startThread";
|
||||||
|
startWorkThread();
|
||||||
|
}
|
||||||
|
//std::function<void(int)>processCallback = [=](int val) {
|
||||||
|
// ui.progressBar->setValue(val);
|
||||||
|
// qDebug() << val << endl;
|
||||||
|
//};//类间回调函数;
|
||||||
|
|
||||||
|
/////////////////////////////////////////////////////////////////////
|
||||||
|
//emit startTiffToShp(ui.line_PRE->text(), ui.line_Label->text());
|
||||||
|
/////////////////////////////////////////////////////////////////////
|
||||||
|
ui.label_process->setText(QString::fromLocal8Bit("预测进度:"));
|
||||||
|
emit start(fileMoudle, dirDOM, dirDSM, dirPRE);//, processCallback
|
||||||
|
}
|
||||||
|
|
||||||
|
void VegePredict::pbCancel()
|
||||||
|
{
|
||||||
|
delete myWidget;//调起&QDialog::destroyed
|
||||||
|
}
|
||||||
|
|
||||||
|
void VegePredict::openResultData(QStringList string_list)
|
||||||
|
{
|
||||||
|
if (string_list.isEmpty())
|
||||||
|
return;
|
||||||
|
QgsRasterLayer* rastLayer;
|
||||||
|
QgsVectorLayer* vecLayer;
|
||||||
|
for each (QString layerPath in string_list)
|
||||||
|
{
|
||||||
|
QFileInfo fileInfo(layerPath);
|
||||||
|
QString layerBaseName = fileInfo.baseName(); // 图层名称
|
||||||
|
if ("tif" == fileInfo.suffix() || "tiff" == fileInfo.suffix())
|
||||||
|
{
|
||||||
|
rastLayer = new QgsRasterLayer(fileInfo.filePath(), layerPath, "gdal");
|
||||||
|
if (!rastLayer)
|
||||||
|
return;
|
||||||
|
QgsMapLayer* mapLayer = rastLayer;
|
||||||
|
QgsRectangle myRectangle;
|
||||||
|
rastLayer->setContrastEnhancement(QgsContrastEnhancement::StretchToMinimumMaximum
|
||||||
|
, QgsRasterMinMaxOrigin::StdDev, myRectangle);
|
||||||
|
QList<QgsMapLayer*> mapLayers;
|
||||||
|
mapLayers << mapLayer;
|
||||||
|
QgsProject::instance()->addMapLayers(mapLayers);
|
||||||
|
//zoomToSelectedLayer(mapLayer);
|
||||||
|
}
|
||||||
|
else if ("shp" == fileInfo.suffix())
|
||||||
|
{
|
||||||
|
vecLayer = new QgsVectorLayer(fileInfo.filePath(), layerPath);
|
||||||
|
if (!vecLayer)
|
||||||
|
return;
|
||||||
|
QgsMapLayer* mapLayer = vecLayer;
|
||||||
|
QList<QgsMapLayer*> mapLayers;
|
||||||
|
mapLayers << mapLayer;
|
||||||
|
QgsProject::instance()->addMapLayers(mapLayers);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
75
DEM_GeneRas/DEM_GeneRas.h
Normal file
75
DEM_GeneRas/DEM_GeneRas.h
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <QtWidgets/QDialog>
|
||||||
|
#include <QFileDialog>
|
||||||
|
#include <QMetaType>
|
||||||
|
#include <QDialog>
|
||||||
|
#include <QDebug>
|
||||||
|
#include <QObject>
|
||||||
|
#include <QMessageBox>
|
||||||
|
#include <QPushButton>
|
||||||
|
#include <QString>
|
||||||
|
#include <QThread>
|
||||||
|
#include <QVector>
|
||||||
|
|
||||||
|
#include "ui_DEM_GeneRas.h"
|
||||||
|
#include "ThreadObject.h"
|
||||||
|
#include "SrsMainPluginInterFace.h"
|
||||||
|
|
||||||
|
#include "gdal_priv.h"
|
||||||
|
//#include "gdal_alg_priv.h"
|
||||||
|
|
||||||
|
class VegePredict : public SrsMainInterface
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
Q_INTERFACES(SrsMainInterface)
|
||||||
|
Q_PLUGIN_METADATA(IID MainInterface_iid)
|
||||||
|
|
||||||
|
public:
|
||||||
|
VegePredict();
|
||||||
|
~VegePredict();
|
||||||
|
|
||||||
|
virtual QString PannelName() override;
|
||||||
|
virtual QString CategoryName() override;
|
||||||
|
|
||||||
|
virtual QString EnglishName() override;
|
||||||
|
virtual QString ChineseName() override;
|
||||||
|
virtual QString Information() override;
|
||||||
|
virtual QString IconPath() override;
|
||||||
|
virtual QWidget* CenterWidget() override;
|
||||||
|
|
||||||
|
//读json文件,获取历史存储的路径
|
||||||
|
void ReadConfigHistoryPaths(QString strPath);
|
||||||
|
//保存本次打开的路径到json文件
|
||||||
|
void WriteConfigPaths(QString strPath);
|
||||||
|
|
||||||
|
void startWorkThread();
|
||||||
|
|
||||||
|
void openResultData(QStringList string_list);
|
||||||
|
|
||||||
|
public slots:
|
||||||
|
void chooseDomPath();
|
||||||
|
void chooseDsmPath();
|
||||||
|
void choosePreDir();
|
||||||
|
void chooseMouleFile();
|
||||||
|
|
||||||
|
void addMap();
|
||||||
|
|
||||||
|
void readAndStart();
|
||||||
|
void pbCancel();
|
||||||
|
|
||||||
|
signals:
|
||||||
|
void start(QString Moudle, QString DOM, QString DSM, QString PRE);//, std::function<void(int)>func
|
||||||
|
void killChildThread();
|
||||||
|
void startTiffToShp(QString PRE, QString DSM);
|
||||||
|
|
||||||
|
private:
|
||||||
|
Ui::DEM_GeneRasClass ui;
|
||||||
|
|
||||||
|
QDialog* myWidget = nullptr;
|
||||||
|
|
||||||
|
WorkThreadObject* mWorker = nullptr;
|
||||||
|
|
||||||
|
QThread* mWorkThread = nullptr;
|
||||||
|
|
||||||
|
};
|
6
DEM_GeneRas/DEM_GeneRas.qrc
Normal file
6
DEM_GeneRas/DEM_GeneRas.qrc
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<RCC>
|
||||||
|
<qresource prefix="/DEM_GeneRas">
|
||||||
|
<file>resources/dem_ras.svg</file>
|
||||||
|
<file>DEM_GeneRas.qss</file>
|
||||||
|
</qresource>
|
||||||
|
</RCC>
|
@ -22,7 +22,8 @@ QLabel{
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*----QPushButtonÑùʽ±í*/
|
/*----QPushButtonÑùʽ±í*/
|
||||||
#pushButton_ok, #pushButton_cancel, #pbtInModel, #pbtInDataset , #pbtPreResult{
|
#pushButton_ok, #pushButton_cancel, #pbt_DOM, #pbt_DSM ,
|
||||||
|
#pbt_Label, #pbt_PRE, #pbt_Moudle {
|
||||||
font-family:'Microsoft YaHei';
|
font-family:'Microsoft YaHei';
|
||||||
font-size:12px;
|
font-size:12px;
|
||||||
background-color: #ffffff;
|
background-color: #ffffff;
|
||||||
@ -34,35 +35,39 @@ QLabel{
|
|||||||
#pushButton_ok, #pushButton_cancel{
|
#pushButton_ok, #pushButton_cancel{
|
||||||
min-width:36px;
|
min-width:36px;
|
||||||
}
|
}
|
||||||
#pushButton_ok:hover, #pushButton_cancel:hover, #pbtInModel:hover, #pbtInDataset:hover,#pbtPreResult:hover{
|
#pushButton_ok:hover, #pushButton_cancel:hover, #pbt_DOM:hover, #pbt_DSM:hover
|
||||||
|
,#pbt_Label:hover, #pbt_PRE:hover, #pbt_Moudle:hover {
|
||||||
background-color: #ecf5ff;
|
background-color: #ecf5ff;
|
||||||
color: #409eff;
|
color: #409eff;
|
||||||
}
|
}
|
||||||
#pushButton_ok:pressed, #pushButton_cancel:pressed, #pbtInModel:pressed, #pbtInDataset:pressed,#pbtPreResult:pressed{
|
#pushButton_ok:pressed, #pushButton_cancel:pressed, #pbt_DOM:pressed, #pbt_DSM:pressed
|
||||||
|
,#pbt_Label:pressed, #pbt_PRE:pressed, #pbt_Moudle:pressed {
|
||||||
border: 1px solid #3a8ee6;
|
border: 1px solid #3a8ee6;
|
||||||
color: #409eff;
|
color: #409eff;
|
||||||
}
|
}
|
||||||
#pushButton_ok:checked, #pushButton_cancel:checked, #pbtInModel:checked, #pbtInDataset:checked,#pbtPreResult:checked{
|
#pushButton_ok:checked, #pushButton_cancel:checked, #pbt_DOM:checked, #pbt_DSM:checked
|
||||||
|
,#pbt_Label:checked, #pbt_PRE:checked, #pbt_Moudle:checked{
|
||||||
border: 1px solid #3a8ee6;
|
border: 1px solid #3a8ee6;
|
||||||
color: #409eff;
|
color: #409eff;
|
||||||
}
|
}
|
||||||
#pushButton_ok:focus, #pushButton_cancel:focus, #pbtInModel:focus, #pbtInDataset:focus,#pbtPreResult:focus{
|
#pushButton_ok:focus, #pushButton_cancel:focus, #pbt_DOM:focus, #pbt_DSM:focus
|
||||||
|
,#pbt_Label:focus, #pbt_PRE:focus, #pbt_Moudle:focus{
|
||||||
border: 1px solid #3a8ee6;
|
border: 1px solid #3a8ee6;
|
||||||
color: #409eff;
|
color: #409eff;
|
||||||
outline: none;
|
outline: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*----QLineEditÑùʽ*/
|
/*----QLineEditÑùʽ*/
|
||||||
#lineInModel, #lineInDataset, #linePreResult{
|
#line_DOM, #line_DSM, #line_Label, #line_PRE, #line_Moudle{
|
||||||
border:0px;
|
border:0px;
|
||||||
border-bottom: 1px solid #B3B3B3;
|
border-bottom: 1px solid #B3B3B3;
|
||||||
font-family:'Microsoft YaHei';
|
font-family:'Microsoft YaHei';
|
||||||
font-size:12px;
|
font-size:12px;
|
||||||
background-color:transparent;
|
background-color:transparent;
|
||||||
}
|
}
|
||||||
#lineInModel:hover, #lineInDataset:hover, #linePreResult:hover{
|
#line_DOM:hover, #line_DSM:hover, #line_Label:hover, #line_PRE:hover, #line_Moudle:hover{
|
||||||
border-bottom: 2px solid #66A3FF;
|
border-bottom: 2px solid #66A3FF;
|
||||||
}
|
}
|
||||||
#lineInModel:focus, #lineInDataset:focus, #linePreResult:focus{
|
#line_DOM:focus, #line_DSM:focus, #line_Label:focus, #line_PRE:focus, #line_Moudle:focus{
|
||||||
border-bottom: 2px solid #7666FF;
|
border-bottom: 2px solid #7666FF;
|
||||||
}
|
}
|
325
DEM_GeneRas/DEM_GeneRas.ui
Normal file
325
DEM_GeneRas/DEM_GeneRas.ui
Normal file
@ -0,0 +1,325 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<ui version="4.0">
|
||||||
|
<class>DEM_GeneRasClass</class>
|
||||||
|
<widget class="QDialog" name="DEM_GeneRasClass">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>0</x>
|
||||||
|
<y>0</y>
|
||||||
|
<width>500</width>
|
||||||
|
<height>300</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>500</width>
|
||||||
|
<height>300</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="maximumSize">
|
||||||
|
<size>
|
||||||
|
<width>500</width>
|
||||||
|
<height>300</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="windowTitle">
|
||||||
|
<string/>
|
||||||
|
</property>
|
||||||
|
<layout class="QVBoxLayout" name="verticalLayout">
|
||||||
|
<item>
|
||||||
|
<layout class="QGridLayout" name="gridLayout">
|
||||||
|
<item row="0" column="2">
|
||||||
|
<widget class="QPushButton" name="pbt_Moudle">
|
||||||
|
<property name="text">
|
||||||
|
<string>选择文件</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="0" column="0">
|
||||||
|
<widget class="QLabel" name="label_5">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Preferred" vsizetype="Expanding">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>100</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="maximumSize">
|
||||||
|
<size>
|
||||||
|
<width>16777215</width>
|
||||||
|
<height>16777215</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>输入模型文件路径</string>
|
||||||
|
</property>
|
||||||
|
<property name="alignment">
|
||||||
|
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="2" column="0">
|
||||||
|
<widget class="QLabel" name="label_2">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Preferred" vsizetype="Expanding">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>100</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="maximumSize">
|
||||||
|
<size>
|
||||||
|
<width>16777215</width>
|
||||||
|
<height>16777215</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>输入DSM文件路径</string>
|
||||||
|
</property>
|
||||||
|
<property name="alignment">
|
||||||
|
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="1" column="2">
|
||||||
|
<widget class="QPushButton" name="pbt_DOM">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>75</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="maximumSize">
|
||||||
|
<size>
|
||||||
|
<width>75</width>
|
||||||
|
<height>16777215</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>选择文件夹</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="3" column="1">
|
||||||
|
<widget class="QLineEdit" name="line_PRE"/>
|
||||||
|
</item>
|
||||||
|
<item row="1" column="0">
|
||||||
|
<widget class="QLabel" name="label">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Preferred" vsizetype="Expanding">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>100</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="maximumSize">
|
||||||
|
<size>
|
||||||
|
<width>16777215</width>
|
||||||
|
<height>16777215</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>输入DOM文件路径</string>
|
||||||
|
</property>
|
||||||
|
<property name="alignment">
|
||||||
|
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="2" column="2">
|
||||||
|
<widget class="QPushButton" name="pbt_DSM">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>75</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="maximumSize">
|
||||||
|
<size>
|
||||||
|
<width>75</width>
|
||||||
|
<height>16777215</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>选择文件夹</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="3" column="0">
|
||||||
|
<widget class="QLabel" name="label_4">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Preferred" vsizetype="Expanding">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>100</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="maximumSize">
|
||||||
|
<size>
|
||||||
|
<width>16777215</width>
|
||||||
|
<height>16777215</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>预测结果文件路径</string>
|
||||||
|
</property>
|
||||||
|
<property name="alignment">
|
||||||
|
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="0" column="1">
|
||||||
|
<widget class="QLineEdit" name="line_Moudle"/>
|
||||||
|
</item>
|
||||||
|
<item row="3" column="2">
|
||||||
|
<widget class="QPushButton" name="pbt_PRE">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>75</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="maximumSize">
|
||||||
|
<size>
|
||||||
|
<width>75</width>
|
||||||
|
<height>16777215</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>选择文件夹</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="1" column="1">
|
||||||
|
<widget class="QLineEdit" name="line_DOM">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="2" column="1">
|
||||||
|
<widget class="QLineEdit" name="line_DSM">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||||
|
<property name="spacing">
|
||||||
|
<number>0</number>
|
||||||
|
</property>
|
||||||
|
<property name="sizeConstraint">
|
||||||
|
<enum>QLayout::SetDefaultConstraint</enum>
|
||||||
|
</property>
|
||||||
|
<item>
|
||||||
|
<spacer name="horizontalSpacer">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>40</width>
|
||||||
|
<height>20</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QPushButton" name="pushButton_ok">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>确定</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<spacer name="horizontalSpacer_2">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeType">
|
||||||
|
<enum>QSizePolicy::Fixed</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>10</width>
|
||||||
|
<height>20</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QPushButton" name="pushButton_cancel">
|
||||||
|
<property name="text">
|
||||||
|
<string>取消</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<layout class="QHBoxLayout" name="horizontalLayout_5">
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label_process">
|
||||||
|
<property name="text">
|
||||||
|
<string>进度:</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QProgressBar" name="progressBar">
|
||||||
|
<property name="value">
|
||||||
|
<number>0</number>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
<layoutdefault spacing="6" margin="11"/>
|
||||||
|
<resources>
|
||||||
|
<include location="DEM_GeneRas.qrc"/>
|
||||||
|
</resources>
|
||||||
|
<connections/>
|
||||||
|
</ui>
|
@ -7,10 +7,11 @@
|
|||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup Label="Globals">
|
<PropertyGroup Label="Globals">
|
||||||
<ProjectGuid>{ABE55CAB-C9A0-4D11-AF67-DEFEF07F3DA5}</ProjectGuid>
|
<ProjectGuid>{AAEF388B-265D-4CF4-8832-9E6CD50B4644}</ProjectGuid>
|
||||||
<Keyword>QtVS_v304</Keyword>
|
<Keyword>QtVS_v304</Keyword>
|
||||||
<WindowsTargetPlatformVersion Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">10.0</WindowsTargetPlatformVersion>
|
<WindowsTargetPlatformVersion Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">10.0</WindowsTargetPlatformVersion>
|
||||||
<QtMsBuild Condition="'$(QtMsBuild)'=='' OR !Exists('$(QtMsBuild)\qt.targets')">$(MSBuildProjectDirectory)\QtMsBuild</QtMsBuild>
|
<QtMsBuild Condition="'$(QtMsBuild)'=='' OR !Exists('$(QtMsBuild)\qt.targets')">$(MSBuildProjectDirectory)\QtMsBuild</QtMsBuild>
|
||||||
|
<ProjectName>DEM_Predict</ProjectName>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'" Label="Configuration">
|
||||||
@ -22,7 +23,7 @@
|
|||||||
<Import Project="$(QtMsBuild)\qt_defaults.props" />
|
<Import Project="$(QtMsBuild)\qt_defaults.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'" Label="QtSettings">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'" Label="QtSettings">
|
||||||
<QtInstall>QtQgis</QtInstall>
|
<QtInstall>qt5.11.2</QtInstall>
|
||||||
<QtModules>core;gui;widgets</QtModules>
|
<QtModules>core;gui;widgets</QtModules>
|
||||||
<QtBuildConfig>release</QtBuildConfig>
|
<QtBuildConfig>release</QtBuildConfig>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
@ -37,9 +38,9 @@
|
|||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup Label="UserMacros" />
|
<PropertyGroup Label="UserMacros" />
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
|
||||||
<IncludePath>D:\qgis\osgeo4w\include;D:\qgis\osgeo4w\apps\qgis_build_sdk\include;D:\qgis\osgeo4w\apps\Qt5\include;D:\qgis\osgeo4w\apps\Qt5\include\QtXml;$(IncludePath)</IncludePath>
|
<IncludePath>D:\qgis\osgeo4w\include;D:\qgis\osgeo4w\apps\Qt5\include;D:\qgis\osgeo4w\apps\qgis_build_sdk\include;D:\qgis\osgeo4w\apps\Qt5\include\QtXml;$(IncludePath)</IncludePath>
|
||||||
<LibraryPath>D:\qgis\osgeo4w\lib;D:\qgis\osgeo4w\apps\qgis_build_sdk\lib;D:\qgis\osgeo4w\apps\Qt5\lib;$(LibraryPath)</LibraryPath>
|
<LibraryPath>D:\qgis\osgeo4w\lib;D:\qgis\osgeo4w\apps\Qt5\lib;D:\qgis\osgeo4w\apps\qgis_build_sdk\lib;$(LibraryPath)</LibraryPath>
|
||||||
<TargetName>landslide3_pre</TargetName>
|
<TargetName>dem3-demPredict</TargetName>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||||
<Link>
|
<Link>
|
||||||
@ -60,25 +61,27 @@
|
|||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="QtGDALProcessBar.cpp" />
|
|
||||||
<QtRcc Include="LandslidePredict.qrc" />
|
|
||||||
<QtUic Include="LandslidePredict.ui" />
|
|
||||||
<QtMoc Include="LandslidePredict.h" />
|
|
||||||
<ClCompile Include="im2shp.cpp" />
|
<ClCompile Include="im2shp.cpp" />
|
||||||
<ClCompile Include="LandslidePredict.cpp" />
|
<ClCompile Include="QtGDALProcessBar.cpp" />
|
||||||
|
<ClCompile Include="ThreadObject.cpp" />
|
||||||
|
<QtRcc Include="DEM_GeneRas.qrc" />
|
||||||
|
<QtMoc Include="DEM_GeneRas.h" />
|
||||||
|
<ClCompile Include="DEM_GeneRas.cpp" />
|
||||||
<ClCompile Include="main.cpp" />
|
<ClCompile Include="main.cpp" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<QtMoc Include="SrsMainPluginInterFace.h" />
|
<QtUic Include="DEM_GeneRas.ui" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<QtMoc Include="ThreadObject.h" />
|
||||||
|
<QtMoc Include="SrsMainPluginInterFace.h" />
|
||||||
<ClInclude Include="CProcessBase.h" />
|
<ClInclude Include="CProcessBase.h" />
|
||||||
<ClInclude Include="im2shp.h" />
|
<ClInclude Include="im2shp.h" />
|
||||||
<QtMoc Include="QtGDALProcessBar.h" />
|
<QtMoc Include="QtGDALProcessBar.h" />
|
||||||
<ClInclude Include="x64\Release\uic\ui_LandslidePredict.h" />
|
<ClInclude Include="x64\Release\uic\ui_DEM_GeneRas.h" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Include="LandslidePredict.qss" />
|
<None Include="DEM_GeneRas.qss" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
<ImportGroup Condition="Exists('$(QtMsBuild)\qt.targets')">
|
<ImportGroup Condition="Exists('$(QtMsBuild)\qt.targets')">
|
@ -3,7 +3,7 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Filter Include="Source Files">
|
<Filter Include="Source Files">
|
||||||
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
|
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
|
||||||
<Extensions>qml;cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
|
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter Include="Header Files">
|
<Filter Include="Header Files">
|
||||||
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
|
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
|
||||||
@ -21,18 +21,18 @@
|
|||||||
<UniqueIdentifier>{639EADAA-A684-42e4-A9AD-28FC9BCB8F7C}</UniqueIdentifier>
|
<UniqueIdentifier>{639EADAA-A684-42e4-A9AD-28FC9BCB8F7C}</UniqueIdentifier>
|
||||||
<Extensions>ts</Extensions>
|
<Extensions>ts</Extensions>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
<Filter Include="process">
|
||||||
|
<UniqueIdentifier>{8ac62ded-3917-412e-99b7-44350c87e7c8}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<QtRcc Include="LandslidePredict.qrc">
|
<QtRcc Include="DEM_GeneRas.qrc">
|
||||||
<Filter>Resource Files</Filter>
|
<Filter>Resource Files</Filter>
|
||||||
</QtRcc>
|
</QtRcc>
|
||||||
<QtUic Include="LandslidePredict.ui">
|
<QtMoc Include="DEM_GeneRas.h">
|
||||||
<Filter>Form Files</Filter>
|
|
||||||
</QtUic>
|
|
||||||
<QtMoc Include="LandslidePredict.h">
|
|
||||||
<Filter>Header Files</Filter>
|
<Filter>Header Files</Filter>
|
||||||
</QtMoc>
|
</QtMoc>
|
||||||
<ClCompile Include="LandslidePredict.cpp">
|
<ClCompile Include="DEM_GeneRas.cpp">
|
||||||
<Filter>Source Files</Filter>
|
<Filter>Source Files</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
@ -41,33 +41,44 @@
|
|||||||
<Filter>Source Files</Filter>
|
<Filter>Source Files</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="im2shp.cpp">
|
<ClCompile Include="im2shp.cpp">
|
||||||
<Filter>Source Files</Filter>
|
<Filter>process</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="QtGDALProcessBar.cpp">
|
<ClCompile Include="QtGDALProcessBar.cpp">
|
||||||
|
<Filter>process</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="ThreadObject.cpp">
|
||||||
<Filter>Source Files</Filter>
|
<Filter>Source Files</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<QtUic Include="DEM_GeneRas.ui">
|
||||||
|
<Filter>Form Files</Filter>
|
||||||
|
</QtUic>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClInclude Include="x64\Release\uic\ui_DEM_GeneRas.h">
|
||||||
|
<Filter>Form Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="im2shp.h">
|
||||||
|
<Filter>process</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="CProcessBase.h">
|
||||||
|
<Filter>process</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<QtMoc Include="SrsMainPluginInterFace.h">
|
<QtMoc Include="SrsMainPluginInterFace.h">
|
||||||
<Filter>Header Files</Filter>
|
<Filter>Header Files</Filter>
|
||||||
</QtMoc>
|
</QtMoc>
|
||||||
<QtMoc Include="QtGDALProcessBar.h">
|
<QtMoc Include="QtGDALProcessBar.h">
|
||||||
|
<Filter>process</Filter>
|
||||||
|
</QtMoc>
|
||||||
|
<QtMoc Include="ThreadObject.h">
|
||||||
<Filter>Header Files</Filter>
|
<Filter>Header Files</Filter>
|
||||||
</QtMoc>
|
</QtMoc>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClInclude Include="x64\Release\uic\ui_LandslidePredict.h">
|
<None Include="DEM_GeneRas.qss">
|
||||||
<Filter>Form Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="CProcessBase.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="im2shp.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<None Include="LandslidePredict.qss">
|
|
||||||
<Filter>Resource Files</Filter>
|
<Filter>Resource Files</Filter>
|
||||||
</None>
|
</None>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
117
DEM_GeneRas/ThreadObject.cpp
Normal file
117
DEM_GeneRas/ThreadObject.cpp
Normal file
@ -0,0 +1,117 @@
|
|||||||
|
#include <QProcess>
|
||||||
|
#include <QDir>
|
||||||
|
#include <QApplication>
|
||||||
|
#include <QDebug>
|
||||||
|
#include <QTimer>
|
||||||
|
|
||||||
|
#include <windows.h>
|
||||||
|
|
||||||
|
#include "DEM_GeneRas.h"
|
||||||
|
#include "ThreadObject.h"
|
||||||
|
|
||||||
|
#include "im2shp.h"
|
||||||
|
|
||||||
|
using namespace std;
|
||||||
|
|
||||||
|
WorkThreadObject::WorkThreadObject(QObject* parent) :QObject(parent)
|
||||||
|
{
|
||||||
|
qRegisterMetaType<std::function<void(int)> >("std::function<void(int)>");
|
||||||
|
}
|
||||||
|
|
||||||
|
WorkThreadObject::~WorkThreadObject()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void WorkThreadObject::runPredictWork(QString Moudle, QString DOM, QString DSM, QString PRE)//, std::function<void(int)>func
|
||||||
|
{
|
||||||
|
QString str = QString("%1->%2,thread id:%3").arg(__FILE__).arg(__FUNCTION__).arg((int)QThread::currentThreadId());
|
||||||
|
QDir pluginsDir = QDir(qApp->applicationDirPath());
|
||||||
|
qDebug() << str << "----" << pluginsDir.currentPath();
|
||||||
|
if (!pluginsDir.cd("models\\envs"))
|
||||||
|
{
|
||||||
|
qDebug() << "no folder models\\envs";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
QString exeDirName = pluginsDir.absoluteFilePath("predict_4c_vegetation.exe");
|
||||||
|
qDebug() << "----" << exeDirName;
|
||||||
|
|
||||||
|
QString model = " --model_path " + Moudle;
|
||||||
|
QString dom_path = " --dom_path " + DOM + "/";
|
||||||
|
QString dsm_path = " --dsm_path " + DSM + "/";
|
||||||
|
QString pre_dir = " --pre_path " + PRE + "/";
|
||||||
|
QString ss = exeDirName + model + dom_path + dsm_path + pre_dir;
|
||||||
|
qDebug() << ss;
|
||||||
|
QProcess* pProces = new QProcess(this);
|
||||||
|
connect(pProces, SIGNAL(readyReadStandardOutput()), this, SLOT(on_read()));
|
||||||
|
|
||||||
|
pProces->start(ss);
|
||||||
|
emit process(2);
|
||||||
|
}
|
||||||
|
|
||||||
|
void WorkThreadObject::on_read()
|
||||||
|
{
|
||||||
|
mProces = (QProcess*)sender();
|
||||||
|
QString output = QString::fromLocal8Bit(mProces->readAllStandardOutput());
|
||||||
|
if (output.toFloat() > 0)
|
||||||
|
{
|
||||||
|
qDebug() << "exe out:" << output.toFloat();
|
||||||
|
emit process(output.toFloat());
|
||||||
|
if (output.toFloat() == 100.0)
|
||||||
|
emit addDataToMap();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
qDebug() << "Unresolved exe out:" << output;
|
||||||
|
}
|
||||||
|
|
||||||
|
void WorkThreadObject::runFormatConvert(QString pre_path, QString DSM)
|
||||||
|
{
|
||||||
|
QDir dir(pre_path);
|
||||||
|
QStringList nameFilters;
|
||||||
|
nameFilters << "*.tif" << "*.tiff";
|
||||||
|
QStringList pre_tiff_files = dir.entryList(nameFilters, QDir::Files | QDir::Readable, QDir::Name);
|
||||||
|
int list_len = pre_tiff_files.size();
|
||||||
|
for (int i = 0; i < list_len; i++)
|
||||||
|
{
|
||||||
|
emit process(float(i) / float(list_len) * 95);
|
||||||
|
qDebug() << "TiffToShp progress:" << float(i) / float(list_len) * 100;
|
||||||
|
QString file_path = pre_path + "\\" + pre_tiff_files[i];
|
||||||
|
QString dsm_path = DSM + "\\" + pre_tiff_files[i];
|
||||||
|
string path_preTiff = file_path.toStdString();
|
||||||
|
string pathPureName = path_preTiff.substr(0, path_preTiff.rfind("."));
|
||||||
|
string shp_path = pathPureName + ".shp";
|
||||||
|
//调起栅格转矢量
|
||||||
|
img2shp cc;
|
||||||
|
QtGDALProcessBar* gb = new QtGDALProcessBar();
|
||||||
|
bool returnval = cc.ImagePolygonize(path_preTiff.c_str(), shp_path.c_str(), "ESRI Shapefile", 1, gb, gb);
|
||||||
|
if (returnval == true)
|
||||||
|
{
|
||||||
|
QStringList list;
|
||||||
|
list << dsm_path << QString::fromStdString(shp_path);
|
||||||
|
emit addShpDataToMap(list);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
//QMessageBox mess(QMessageBox::NoIcon, QString::fromLocal8Bit("错误"), QString::fromLocal8Bit("请检查输入数据"));
|
||||||
|
//mess.setWindowFlags(Qt::Drawer);
|
||||||
|
//int result = mess.exec();
|
||||||
|
//return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
emit process(100);
|
||||||
|
}
|
||||||
|
|
||||||
|
void WorkThreadObject::on_cancel()
|
||||||
|
{
|
||||||
|
if (mProces == nullptr)
|
||||||
|
{
|
||||||
|
qDebug() << "--mProces null";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
//py打包exe文件名
|
||||||
|
QString KillStr = "taskkill /f /im predict_4c_vegetation.exe";
|
||||||
|
mProces->startDetached(KillStr);
|
||||||
|
qDebug() << "--kill Proces";
|
||||||
|
}
|
||||||
|
}
|
47
DEM_GeneRas/ThreadObject.h
Normal file
47
DEM_GeneRas/ThreadObject.h
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
#ifndef THREADOBJECT_H
|
||||||
|
#define THREADOBJECT_H
|
||||||
|
#include <functional>
|
||||||
|
|
||||||
|
#include <QMessageBox>
|
||||||
|
#include <QObject>
|
||||||
|
#include <QProcess>
|
||||||
|
#include <QThread>
|
||||||
|
#include <QVector>
|
||||||
|
#include <QDateTime>
|
||||||
|
|
||||||
|
#include <iostream>
|
||||||
|
|
||||||
|
//#include "qtclasslibrary1_global.h"
|
||||||
|
#include "SrsMainPluginInterFace.h"
|
||||||
|
#include "ui_DEM_GeneRas.h"
|
||||||
|
//#include "Extract.h"
|
||||||
|
|
||||||
|
using namespace std;
|
||||||
|
|
||||||
|
class VegePredict;
|
||||||
|
|
||||||
|
class WorkThreadObject :public QObject
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
public:
|
||||||
|
WorkThreadObject(QObject* parent = NULL);
|
||||||
|
~WorkThreadObject();
|
||||||
|
|
||||||
|
void on_cancel();
|
||||||
|
|
||||||
|
signals:
|
||||||
|
void process(int value);
|
||||||
|
void addDataToMap();
|
||||||
|
void addShpDataToMap(QStringList list);
|
||||||
|
|
||||||
|
public slots:
|
||||||
|
void runPredictWork(QString Moudle, QString DOM, QString DSM, QString PRE);//
|
||||||
|
void on_read();
|
||||||
|
void runFormatConvert(QString pre_path, QString DSM);
|
||||||
|
|
||||||
|
private:
|
||||||
|
QProcess* mProces = nullptr;
|
||||||
|
QString assess_txt_path;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
16
DEM_GeneRas/main.cpp
Normal file
16
DEM_GeneRas/main.cpp
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
#include "DEM_GeneRas.h"
|
||||||
|
#include <QtWidgets/QApplication>
|
||||||
|
|
||||||
|
int main(int argc, char *argv[])
|
||||||
|
{
|
||||||
|
QApplication a(argc, argv);
|
||||||
|
|
||||||
|
QString gdal_path = qApp->applicationDirPath().toLocal8Bit() + "/share/gdal";
|
||||||
|
QString pro_lib_path = qApp->applicationDirPath().toLocal8Bit() + "/share/proj";
|
||||||
|
qputenv("GDAL_DATA", gdal_path.toLocal8Bit());
|
||||||
|
qputenv("PROJ_LIB", pro_lib_path.toLocal8Bit());
|
||||||
|
|
||||||
|
VegePredict w;
|
||||||
|
w.CenterWidget()->show();
|
||||||
|
return a.exec();
|
||||||
|
}
|
1
DEM_GeneRas/resources/dem_ras.svg
Normal file
1
DEM_GeneRas/resources/dem_ras.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1640758642809" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="10193" xmlns:xlink="http://www.w3.org/1999/xlink" width="26" height="26"><defs><style type="text/css"></style></defs><path d="M633.417143 542.281143c-78.774857 0-142.848-52.736-142.848-117.613714 0-64.804571 64.073143-117.686857 142.848-117.686858s142.921143 52.809143 142.921143 117.76c0 64.877714-64.073143 117.540571-142.921143 117.540572z m0-172.397714c-43.958857 0-81.115429 25.161143-81.115429 54.857142s37.156571 54.784 81.188572 54.784c43.885714 0 81.042286-25.088 81.042285-54.857142 0-29.622857-37.083429-54.857143-81.115428-54.857143zM342.528 1024c-4.461714-106.569143 54.637714-293.302857 146.651429-390.948571 41.837714-44.397714 86.528-66.998857 132.681142-66.998858h64.365715c74.605714 0 135.314286-63.488 135.314285-141.385142s-60.708571-141.312-135.314285-141.312H590.994286c-74.605714 0-135.241143 63.414857-135.241143 141.312-9.362286 405.796571-400.091429 553.691429-404.114286 555.154285l-20.992-59.099428c14.482286-5.339429 354.889143-135.387429 363.300572-496.786286 0-111.908571 88.356571-203.483429 196.973714-203.483429h95.305143c108.617143 0 196.973714 91.574857 196.973714 204.141715 0 112.64-88.356571 204.214857-196.973714 204.214857h-64.365715c-28.672 0-58.294857 16.018286-88.064 47.616-78.994286 83.748571-133.485714 251.099429-129.536 344.795428L342.528 1024z m139.044571-0.146286C472.576 790.308571 559.689143 645.851429 714.605714 637.513143v-0.073143c131.072 0 240.274286-112.64 241.371429-246.272-16.749714-120.173714-97.645714-196.754286-247.369143-233.618286-43.446857-10.752-115.931429-10.971429-116.662857-10.971428-129.462857 0-230.765714 106.934857-230.765714 243.492571 0 343.698286-344.502857 423.862857-348.013715 424.667429L0 753.371429c12.214857-2.706286 299.373714-70.656 299.373714-363.227429 0-171.812571 128.585143-306.322286 292.571429-306.322286 3.291429 0 80.603429 0.146286 131.218286 12.653715 175.762286 43.446857 274.724571 140.507429 294.326857 288.475428l0.292571 4.169143c0 168.448-137.508571 310.710857-300.470857 311.149714-172.617143 9.728-176.786286 248.173714-174.006857 321.097143l-61.732572 2.486857zM6.582857 628.297143c60.416 0 204.653714-38.4 236.909714-394.24l0.731429-4.534857c24.868571-104.155429 95.744-228.205714 291.108571-228.205715 20.333714 0 270.482286-1.316571 270.482286-1.316571l5.558857 0.438857c6.582857 1.243429 161.792 30.866286 212.626286 162.157714l-57.490286 23.04C931.181714 94.354286 820.955429 66.779429 802.962286 62.829714c-28.964571 0.146286-248.685714 1.389714-266.678857 1.389715-46.811429-0.146286-187.684571 0-231.497143 178.029714C267.337143 647.314286 83.894857 691.126857 6.582857 691.126857V628.297143z m2.048-85.942857h-3.657143l3.218286-62.756572h0.877714c26.038857 0 102.107429-55.881143 129.243429-242.468571C156.306286 113.810286 217.088 60.562286 253.44 28.818286c7.314286-6.363429 16.384-14.336 18.285714-17.554286a13.165714 13.165714 0 0 0-1.316571 6.217143h61.732571c0 25.234286-18.651429 41.691429-38.4 58.88-31.744 27.794286-79.725714 69.778286-94.281143 169.984C167.570286 464.896 69.339429 542.354286 8.630857 542.354286z m660.918857 480.256h-61.805714c0-152.429714 67.291429-334.116571 387.510857-334.116572v62.829715c-219.209143 0-325.705143 88.795429-325.705143 271.36z m160.914286 0h-61.805714c0-123.684571 17.261714-235.373714 225.353143-243.931429l2.56 62.756572c-158.427429 6.509714-166.107429 69.851429-166.107429 181.174857z m123.611429 0h-61.805715c0-127.780571 78.848-137.654857 102.985143-137.654857v62.756571c-10.24 0-41.179429 0-41.179428 74.898286z" p-id="10194" fill="#2c2c2c"></path></svg>
|
After Width: | Height: | Size: 3.7 KiB |
@ -1,22 +1,22 @@
|
|||||||
|
|
||||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
# Visual Studio Version 16
|
# Visual Studio Version 16
|
||||||
VisualStudioVersion = 16.0.32630.194
|
VisualStudioVersion = 16.0.31911.196
|
||||||
MinimumVisualStudioVersion = 10.0.40219.1
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LandslidePredict", "LandslidePredict\LandslidePredict.vcxproj", "{ABE55CAB-C9A0-4D11-AF67-DEFEF07F3DA5}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DEM_GeneRas", "DEM_GeneRas\DEM_GeneRas.vcxproj", "{AAEF388B-265D-4CF4-8832-9E6CD50B4644}"
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Release|x64 = Release|x64
|
Release|x64 = Release|x64
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
{ABE55CAB-C9A0-4D11-AF67-DEFEF07F3DA5}.Release|x64.ActiveCfg = Release|x64
|
{AAEF388B-265D-4CF4-8832-9E6CD50B4644}.Release|x64.ActiveCfg = Release|x64
|
||||||
{ABE55CAB-C9A0-4D11-AF67-DEFEF07F3DA5}.Release|x64.Build.0 = Release|x64
|
{AAEF388B-265D-4CF4-8832-9E6CD50B4644}.Release|x64.Build.0 = Release|x64
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||||
SolutionGuid = {A9D5438D-7ABE-4CBF-BEAE-6F3FE0CBEB3F}
|
SolutionGuid = {6D802BB4-76E8-4FE8-8FB7-04BCDE98FF27}
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
EndGlobal
|
EndGlobal
|
@ -1,383 +0,0 @@
|
|||||||
#include "LandslidePredict.h"
|
|
||||||
|
|
||||||
#include <qgsrasterlayer.h>
|
|
||||||
#include <qgsvectorlayer.h>
|
|
||||||
#include <qgsmapcanvas.h>
|
|
||||||
|
|
||||||
LandslidePredict::LandslidePredict()
|
|
||||||
{
|
|
||||||
//ui.setupUi(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
QString LandslidePredict::PannelName()
|
|
||||||
{
|
|
||||||
return QString::fromLocal8Bit("地质模块");
|
|
||||||
}
|
|
||||||
|
|
||||||
QString LandslidePredict::CategoryName()
|
|
||||||
{
|
|
||||||
return QString::fromLocal8Bit("地质模块");
|
|
||||||
}
|
|
||||||
|
|
||||||
QString LandslidePredict::EnglishName()
|
|
||||||
{
|
|
||||||
return QString::fromLocal8Bit("LandslidePredict");
|
|
||||||
}
|
|
||||||
|
|
||||||
QString LandslidePredict::ChineseName()
|
|
||||||
{
|
|
||||||
return QString::fromLocal8Bit("滑坡识别");
|
|
||||||
}
|
|
||||||
|
|
||||||
QString LandslidePredict::Information()
|
|
||||||
{
|
|
||||||
return QString::fromLocal8Bit("滑坡识别");
|
|
||||||
}
|
|
||||||
|
|
||||||
QString LandslidePredict::IconPath()
|
|
||||||
{
|
|
||||||
return QString(":/LandslidePredict/resources/landslide.svg");
|
|
||||||
}
|
|
||||||
|
|
||||||
QWidget* LandslidePredict::CenterWidget()
|
|
||||||
{
|
|
||||||
QString gdal_path = qApp->applicationDirPath().toLocal8Bit() + "/share/gdal";
|
|
||||||
QString pro_lib_path = qApp->applicationDirPath().toLocal8Bit() + "/share/proj";
|
|
||||||
qputenv("GDAL_DATA", gdal_path.toLocal8Bit());
|
|
||||||
qputenv("PROJ_LIB", pro_lib_path.toLocal8Bit());
|
|
||||||
|
|
||||||
bool showWin = false;
|
|
||||||
if (myWidget == nullptr)
|
|
||||||
{
|
|
||||||
myWidget = new QDialog();
|
|
||||||
showWin = true;
|
|
||||||
qDebug() << "new QDialog()";
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
qDebug() << "already have myWidget";
|
|
||||||
//激活窗口并提升至顶层
|
|
||||||
myWidget->activateWindow();
|
|
||||||
myWidget->raise();
|
|
||||||
return myWidget;
|
|
||||||
}
|
|
||||||
ui.setupUi(myWidget);
|
|
||||||
|
|
||||||
myWidget->setWindowTitle(QString::fromLocal8Bit("滑坡识别"));
|
|
||||||
myWidget->setWindowFlags(Qt::CustomizeWindowHint | Qt::WindowCloseButtonHint);
|
|
||||||
myWidget->setWindowIcon(QIcon(":/LandslidePredict/resources/landslide.svg"));
|
|
||||||
myWidget->setAttribute(Qt::WA_QuitOnClose, false);
|
|
||||||
|
|
||||||
myWidget->setAttribute(Qt::WA_DeleteOnClose);
|
|
||||||
|
|
||||||
connect(myWidget, &QDialog::destroyed, this, [=]() {
|
|
||||||
qDebug() << "----Landslide Predict window close----";
|
|
||||||
|
|
||||||
QDir pluginsDir = QDir(qApp->applicationDirPath());
|
|
||||||
if (pluginsDir.cd("srsplugins\\SldModel"))
|
|
||||||
{
|
|
||||||
QString strConfigPath = pluginsDir.absoluteFilePath("sld_config.ini");
|
|
||||||
QFile f(strConfigPath);
|
|
||||||
if (f.exists())
|
|
||||||
{
|
|
||||||
WriteConfigPaths(strConfigPath);
|
|
||||||
f.close();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (mWorkThread != nullptr)
|
|
||||||
{
|
|
||||||
mWorkThread->requestInterruption();//请求线程中断
|
|
||||||
mWorkThread->quit();
|
|
||||||
mWorkThread->wait();//调用wait后先调用finished信号对应的槽函数,执行完成后再往下走
|
|
||||||
mWorkObject->on_cancel();
|
|
||||||
mWorkThread = nullptr;//mWorkThread, &QThread::finished, mWorkThread, &QObject::deleteLater,不需要delete
|
|
||||||
mWorkObject = nullptr;//mWorkThread, &QThread::finished, mWorker, &QObject::deleteLater
|
|
||||||
}
|
|
||||||
myWidget->close();
|
|
||||||
myWidget = nullptr;
|
|
||||||
qDebug() << "--destroyed";
|
|
||||||
});
|
|
||||||
connect(ui.pbtInModel, &QPushButton::clicked, this, &LandslidePredict::chooseInModel);
|
|
||||||
connect(ui.pbtInDataset, &QPushButton::clicked, this, &LandslidePredict::chooseInDataset);
|
|
||||||
connect(ui.pbtPreResult, &QPushButton::clicked, this, &LandslidePredict::chooseResultPath);
|
|
||||||
|
|
||||||
connect(ui.pushButton_ok, &QPushButton::clicked, this, &LandslidePredict::readAndStart);
|
|
||||||
connect(ui.pushButton_cancel, &QPushButton::clicked, this, &LandslidePredict::pbCancel);
|
|
||||||
|
|
||||||
ui.pbtInModel->setFocus();
|
|
||||||
|
|
||||||
ui.progressBar->setTextVisible(true);
|
|
||||||
ui.progressBar->setRange(0, 100);
|
|
||||||
|
|
||||||
QFile qssFile(":/LandslidePredict/LandslidePredict.qss");
|
|
||||||
qssFile.open(QFile::ReadOnly); //以只读方式打开
|
|
||||||
if (qssFile.isOpen())
|
|
||||||
{
|
|
||||||
QString qss = QLatin1String(qssFile.readAll());
|
|
||||||
myWidget->setStyleSheet(qss);
|
|
||||||
qssFile.close();
|
|
||||||
}
|
|
||||||
else
|
|
||||||
qDebug() << "no qssFile";
|
|
||||||
|
|
||||||
QDir pluginsDir = QDir(qApp->applicationDirPath());
|
|
||||||
if (pluginsDir.cd("srsplugins\\SldModel"))
|
|
||||||
{
|
|
||||||
QString strConfigPath = pluginsDir.absoluteFilePath("sld_config.ini");
|
|
||||||
QFile f(strConfigPath);
|
|
||||||
if (f.exists())
|
|
||||||
{
|
|
||||||
ReadConfigHistoryPaths(strConfigPath);
|
|
||||||
f.close();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (showWin)
|
|
||||||
myWidget->show();
|
|
||||||
|
|
||||||
return myWidget;
|
|
||||||
}
|
|
||||||
|
|
||||||
void LandslidePredict::startWorkThread()
|
|
||||||
{
|
|
||||||
if (mWorkObject != nullptr)
|
|
||||||
return;
|
|
||||||
mWorkThread = new QThread();
|
|
||||||
mWorkObject = new WorkObject();
|
|
||||||
mWorkObject->moveToThread(mWorkThread);
|
|
||||||
connect(mWorkThread, &QThread::finished, mWorkThread, &QObject::deleteLater);
|
|
||||||
connect(mWorkThread, &QThread::finished, mWorkObject, &QObject::deleteLater);
|
|
||||||
connect(mWorkObject, &WorkObject::progress, myWidget, [=](int value) {ui.progressBar->setValue(value); });
|
|
||||||
connect(mWorkObject, &WorkObject::preFinished, this, &LandslidePredict::finished);
|
|
||||||
connect(mWorkObject, &WorkObject::addShpDataToMap, this, &LandslidePredict::openResultData);
|
|
||||||
connect(this, &LandslidePredict::startTiffToShp, mWorkObject, &WorkObject::runFormatConvert);
|
|
||||||
|
|
||||||
connect(this, &LandslidePredict::start, mWorkObject, &WorkObject::runPredictWork);
|
|
||||||
mWorkThread->start();
|
|
||||||
}
|
|
||||||
|
|
||||||
void LandslidePredict::ReadConfigHistoryPaths(QString strPath)
|
|
||||||
{
|
|
||||||
QSettings configIni(strPath, QSettings::IniFormat);
|
|
||||||
|
|
||||||
//打开标题为:[SldPredict] 的组
|
|
||||||
configIni.beginGroup("SldPredict");
|
|
||||||
|
|
||||||
ui.lineInDataset->setText(configIni.value("SrcDom").toString());
|
|
||||||
ui.linePreResult->setText(configIni.value("PredictResult").toString());
|
|
||||||
|
|
||||||
configIni.endGroup();//关闭组
|
|
||||||
}
|
|
||||||
|
|
||||||
void LandslidePredict::WriteConfigPaths(QString strPath)
|
|
||||||
{
|
|
||||||
QSettings configIni(strPath, QSettings::IniFormat);
|
|
||||||
configIni.setIniCodec("utf-8");
|
|
||||||
//打开标题为:[SldPredict] 的组
|
|
||||||
configIni.beginGroup("SldPredict");
|
|
||||||
|
|
||||||
//更新输入DOM路径
|
|
||||||
QString temp = ui.lineInDataset->text();
|
|
||||||
if (temp != "")
|
|
||||||
configIni.setValue("SrcDom", temp);
|
|
||||||
//更新输出结果路径
|
|
||||||
temp = ui.linePreResult->text();
|
|
||||||
if (temp != "")
|
|
||||||
configIni.setValue("PredictResult", temp);
|
|
||||||
|
|
||||||
configIni.endGroup();//关闭组
|
|
||||||
}
|
|
||||||
|
|
||||||
void LandslidePredict::openResultData(QStringList string_list)
|
|
||||||
{
|
|
||||||
if (string_list.isEmpty())
|
|
||||||
return;
|
|
||||||
QgsRasterLayer* rastLayer;
|
|
||||||
QgsVectorLayer* vecLayer;
|
|
||||||
for each (QString layerPath in string_list)
|
|
||||||
{
|
|
||||||
QFileInfo fileInfo(layerPath);
|
|
||||||
QString layerBaseName = fileInfo.baseName(); // 图层名称
|
|
||||||
if ("tif" == fileInfo.suffix() || "tiff" == fileInfo.suffix())
|
|
||||||
{
|
|
||||||
rastLayer = new QgsRasterLayer(fileInfo.filePath(), layerPath, "gdal");
|
|
||||||
if (!rastLayer)
|
|
||||||
return;
|
|
||||||
QgsMapLayer* mapLayer = rastLayer;
|
|
||||||
QgsRectangle myRectangle;
|
|
||||||
rastLayer->setContrastEnhancement(QgsContrastEnhancement::StretchToMinimumMaximum
|
|
||||||
, QgsRasterMinMaxOrigin::StdDev, myRectangle);
|
|
||||||
QList<QgsMapLayer*> mapLayers;
|
|
||||||
mapLayers << mapLayer;
|
|
||||||
QgsProject::instance()->addMapLayers(mapLayers);
|
|
||||||
//zoomToSelectedLayer(mapLayer);
|
|
||||||
}
|
|
||||||
else if ("shp" == fileInfo.suffix())
|
|
||||||
{
|
|
||||||
vecLayer = new QgsVectorLayer(fileInfo.filePath(), layerPath);
|
|
||||||
if (!vecLayer)
|
|
||||||
return;
|
|
||||||
QgsMapLayer* mapLayer = vecLayer;
|
|
||||||
QList<QgsMapLayer*> mapLayers;
|
|
||||||
mapLayers << mapLayer;
|
|
||||||
QgsProject::instance()->addMapLayers(mapLayers);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void LandslidePredict::readAndStart()
|
|
||||||
{
|
|
||||||
QString dirModel = ui.lineInModel->text();
|
|
||||||
QString dirDataset = ui.lineInDataset->text();
|
|
||||||
QString dirPRE = ui.linePreResult->text();
|
|
||||||
|
|
||||||
ui.progressBar->setValue(0);
|
|
||||||
if (dirModel == "" || dirDataset == "" || dirPRE == "")
|
|
||||||
{
|
|
||||||
QMessageBox mess(QMessageBox::NoIcon, QString::fromLocal8Bit("错误"), QString::fromLocal8Bit("请检查输入输出文件或路径"));
|
|
||||||
mess.setWindowFlags(Qt::Drawer);
|
|
||||||
int result = mess.exec();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (mWorkThread == nullptr)
|
|
||||||
{
|
|
||||||
qDebug() << "--startThread";
|
|
||||||
startWorkThread();
|
|
||||||
}
|
|
||||||
|
|
||||||
ui.label_progress->setText(QString::fromLocal8Bit("预测进度:"));
|
|
||||||
emit start(dirModel, dirDataset, dirPRE);
|
|
||||||
}
|
|
||||||
|
|
||||||
void LandslidePredict::pbCancel()
|
|
||||||
{
|
|
||||||
qDebug() << "--pbtCancel";
|
|
||||||
delete myWidget;//调起&QDialog::destroyed
|
|
||||||
}
|
|
||||||
|
|
||||||
void LandslidePredict::chooseInModel()
|
|
||||||
{
|
|
||||||
QString dirModel = QFileDialog::getOpenFileName(ui.pbtInModel, QString::fromLocal8Bit("选择模型文件"), "", "*.pth");
|
|
||||||
if (dirModel != "")
|
|
||||||
ui.lineInModel->setText(dirModel);
|
|
||||||
}
|
|
||||||
|
|
||||||
void LandslidePredict::chooseInDataset()
|
|
||||||
{
|
|
||||||
QString dirInDataset = QFileDialog::getExistingDirectory(ui.pbtInDataset, QString::fromLocal8Bit("选择输入预测数据路径"), "");
|
|
||||||
if (dirInDataset != "")
|
|
||||||
ui.lineInDataset->setText(dirInDataset);
|
|
||||||
}
|
|
||||||
|
|
||||||
void LandslidePredict::chooseResultPath()
|
|
||||||
{
|
|
||||||
QString dirPre = QFileDialog::getExistingDirectory(ui.pbtPreResult, QString::fromLocal8Bit("选择预测结果输出文件路径"), "");
|
|
||||||
if (dirPre != "")
|
|
||||||
ui.linePreResult->setText(dirPre);
|
|
||||||
}
|
|
||||||
|
|
||||||
//预测结束,转矢量
|
|
||||||
void LandslidePredict::finished()
|
|
||||||
{
|
|
||||||
QMessageBox mess(QMessageBox::NoIcon,
|
|
||||||
QString::fromLocal8Bit("滑坡识别结束"),
|
|
||||||
QString::fromLocal8Bit("将对如下路径中结果进行转矢量处理:\n") + ui.linePreResult->text(),
|
|
||||||
QMessageBox::Ok, NULL);
|
|
||||||
mess.setWindowFlags(Qt::Drawer);
|
|
||||||
mess.setButtonText(QMessageBox::Ok, QString::fromLocal8Bit("确认"));
|
|
||||||
int result = mess.exec();
|
|
||||||
switch (result)
|
|
||||||
{
|
|
||||||
case QMessageBox::Ok:
|
|
||||||
emit startTiffToShp(ui.linePreResult->text(), ui.lineInDataset->text());
|
|
||||||
ui.label_progress->setText(QString::fromLocal8Bit("转矢量进度:"));
|
|
||||||
ui.progressBar->setValue(0);
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void WorkObject::runPredictWork(QString inModel, QString inDataset, QString outPre)
|
|
||||||
{
|
|
||||||
QDir pluginsDir = QDir(qApp->applicationDirPath());
|
|
||||||
if (!pluginsDir.cd("models\\envs"))
|
|
||||||
{
|
|
||||||
qDebug() << "no folder models\\envs";
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
QString exeDirName = pluginsDir.absoluteFilePath("predict_3c_landslide.exe");
|
|
||||||
|
|
||||||
QString strModel = " --model_path " + inModel;
|
|
||||||
QString strData = " --dom_path " + inDataset + "/";
|
|
||||||
QString strPre = " --pre_path " + outPre + "/";
|
|
||||||
|
|
||||||
QString ss = exeDirName + strModel + strData + strPre;
|
|
||||||
qDebug() << ss;
|
|
||||||
QProcess* pProces = new QProcess(this);
|
|
||||||
connect(pProces, SIGNAL(readyReadStandardOutput()), this, SLOT(on_read()));
|
|
||||||
|
|
||||||
pProces->start(ss);
|
|
||||||
}
|
|
||||||
|
|
||||||
void WorkObject::on_read()
|
|
||||||
{
|
|
||||||
mProcess = (QProcess*)sender();
|
|
||||||
QString output = QString::fromLocal8Bit(mProcess->readAllStandardOutput());
|
|
||||||
if (output.toFloat() > 0)
|
|
||||||
{
|
|
||||||
qDebug() << "exe out:" << output.toFloat();
|
|
||||||
emit progress(output.toFloat());
|
|
||||||
if (output.toFloat() == 100)
|
|
||||||
emit preFinished();
|
|
||||||
}
|
|
||||||
else
|
|
||||||
qDebug() << "Unresolved exe out:" << output;
|
|
||||||
}
|
|
||||||
|
|
||||||
void WorkObject::on_cancel()
|
|
||||||
{
|
|
||||||
if (mProcess == nullptr)
|
|
||||||
{
|
|
||||||
qDebug() << "--mProces null";
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
QString KillStr = "taskkill /f /im predict_3c_landslide.exe";
|
|
||||||
mProcess->startDetached(KillStr);
|
|
||||||
qDebug() << "--kill Proces";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void WorkObject::runFormatConvert(QString pre, QString dataset)
|
|
||||||
{
|
|
||||||
QDir dir(pre);
|
|
||||||
QStringList nameFilters;
|
|
||||||
nameFilters << "*.tif" << "*.tiff";
|
|
||||||
QStringList pre_tiff_files = dir.entryList(nameFilters, QDir::Files | QDir::Readable, QDir::Name);
|
|
||||||
int list_len = pre_tiff_files.size();
|
|
||||||
for (int i = 0; i < list_len; i++)
|
|
||||||
{
|
|
||||||
emit progress(float(i) / float(list_len) * 95);
|
|
||||||
qDebug() << "TiffToShp progress:" << float(i) / float(list_len) * 100;
|
|
||||||
QString file_path = pre + "\\" + pre_tiff_files[i];
|
|
||||||
QString dsm_path = dataset + "\\" + pre_tiff_files[i];
|
|
||||||
string path_preTiff = file_path.toStdString();
|
|
||||||
string pathPureName = path_preTiff.substr(0, path_preTiff.rfind("."));
|
|
||||||
string shp_path = pathPureName + ".shp";
|
|
||||||
//调起栅格转矢量
|
|
||||||
img2shp cc;
|
|
||||||
QtGDALProcessBar* gb = new QtGDALProcessBar();
|
|
||||||
bool returnval = cc.ImagePolygonize(path_preTiff.c_str(), shp_path.c_str(), "ESRI Shapefile", 1, gb, gb);
|
|
||||||
if (returnval == true)
|
|
||||||
{
|
|
||||||
QStringList list;
|
|
||||||
list << dsm_path << QString::fromStdString(shp_path);
|
|
||||||
emit addShpDataToMap(list);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
qDebug() << "ImagePolygonize fail";
|
|
||||||
}
|
|
||||||
emit progress(100);
|
|
||||||
}
|
|
@ -1,94 +0,0 @@
|
|||||||
#pragma once
|
|
||||||
|
|
||||||
#include <QtWidgets/QDialog>
|
|
||||||
#include "ui_LandslidePredict.h"
|
|
||||||
|
|
||||||
#include <QProcess>
|
|
||||||
#include <QThread>
|
|
||||||
#include <QFile>
|
|
||||||
#include <QIcon>
|
|
||||||
#include <QDebug>
|
|
||||||
#include <QMessageBox>
|
|
||||||
#include <QFileDialog>
|
|
||||||
#include <QStringList>
|
|
||||||
#include <QIntValidator>
|
|
||||||
|
|
||||||
#include "SrsMainPluginInterFace.h"
|
|
||||||
|
|
||||||
#include <string>
|
|
||||||
#include <iostream>
|
|
||||||
|
|
||||||
#include "im2shp.h"
|
|
||||||
|
|
||||||
using namespace std;
|
|
||||||
|
|
||||||
class WorkObject :public QObject
|
|
||||||
{
|
|
||||||
Q_OBJECT
|
|
||||||
|
|
||||||
public slots:
|
|
||||||
void runPredictWork(QString inModel, QString inDataset, QString outPre);
|
|
||||||
void on_read();
|
|
||||||
void on_cancel();
|
|
||||||
void runFormatConvert(QString pre, QString dataset);
|
|
||||||
|
|
||||||
signals:
|
|
||||||
void progress(int value);
|
|
||||||
void preFinished();
|
|
||||||
void addShpDataToMap(QStringList list);
|
|
||||||
|
|
||||||
private:
|
|
||||||
QProcess* mProcess = nullptr;
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
class LandslidePredict : public SrsMainInterface
|
|
||||||
{
|
|
||||||
Q_OBJECT
|
|
||||||
Q_INTERFACES(SrsMainInterface)
|
|
||||||
Q_PLUGIN_METADATA(IID MainInterface_iid)
|
|
||||||
|
|
||||||
public:
|
|
||||||
LandslidePredict();
|
|
||||||
|
|
||||||
virtual QString PannelName() override;
|
|
||||||
virtual QString CategoryName() override;
|
|
||||||
|
|
||||||
virtual QString EnglishName() override;
|
|
||||||
virtual QString ChineseName() override;
|
|
||||||
virtual QString Information() override;
|
|
||||||
virtual QString IconPath() override;
|
|
||||||
virtual QWidget* CenterWidget() override;
|
|
||||||
|
|
||||||
void startWorkThread();
|
|
||||||
|
|
||||||
//读json文件,获取历史存储的路径
|
|
||||||
void ReadConfigHistoryPaths(QString strPath);
|
|
||||||
//保存本次打开的路径到json文件
|
|
||||||
void WriteConfigPaths(QString strPath);
|
|
||||||
|
|
||||||
void openResultData(QStringList string_list);
|
|
||||||
|
|
||||||
public slots:
|
|
||||||
void readAndStart();
|
|
||||||
void pbCancel();
|
|
||||||
|
|
||||||
void chooseInModel();
|
|
||||||
void chooseInDataset();
|
|
||||||
void chooseResultPath();
|
|
||||||
|
|
||||||
void finished();
|
|
||||||
|
|
||||||
signals:
|
|
||||||
void start(QString inModel, QString inDataset, QString outPre);
|
|
||||||
void startTiffToShp(QString pre, QString dataset);
|
|
||||||
|
|
||||||
private:
|
|
||||||
Ui::LandslidePredictClass ui;
|
|
||||||
|
|
||||||
QDialog* myWidget = nullptr;
|
|
||||||
|
|
||||||
QThread* mWorkThread = nullptr;
|
|
||||||
WorkObject* mWorkObject = nullptr;
|
|
||||||
|
|
||||||
};
|
|
@ -1,6 +0,0 @@
|
|||||||
<RCC>
|
|
||||||
<qresource prefix="/LandslidePredict">
|
|
||||||
<file>resources/landslide.svg</file>
|
|
||||||
<file>LandslidePredict.qss</file>
|
|
||||||
</qresource>
|
|
||||||
</RCC>
|
|
@ -1,216 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<ui version="4.0">
|
|
||||||
<class>LandslidePredictClass</class>
|
|
||||||
<widget class="QDialog" name="LandslidePredictClass">
|
|
||||||
<property name="geometry">
|
|
||||||
<rect>
|
|
||||||
<x>0</x>
|
|
||||||
<y>0</y>
|
|
||||||
<width>460</width>
|
|
||||||
<height>270</height>
|
|
||||||
</rect>
|
|
||||||
</property>
|
|
||||||
<property name="minimumSize">
|
|
||||||
<size>
|
|
||||||
<width>460</width>
|
|
||||||
<height>270</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="maximumSize">
|
|
||||||
<size>
|
|
||||||
<width>460</width>
|
|
||||||
<height>270</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="windowTitle">
|
|
||||||
<string>LandslidePredict</string>
|
|
||||||
</property>
|
|
||||||
<layout class="QGridLayout" name="gridLayout_2">
|
|
||||||
<item row="2" column="1">
|
|
||||||
<widget class="QProgressBar" name="progressBar">
|
|
||||||
<property name="value">
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="2" column="0">
|
|
||||||
<widget class="QLabel" name="label_progress">
|
|
||||||
<property name="text">
|
|
||||||
<string>进度:</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="1" column="0" colspan="2">
|
|
||||||
<layout class="QHBoxLayout" name="horizontalLayout">
|
|
||||||
<item>
|
|
||||||
<spacer name="horizontalSpacer_2">
|
|
||||||
<property name="orientation">
|
|
||||||
<enum>Qt::Horizontal</enum>
|
|
||||||
</property>
|
|
||||||
<property name="sizeHint" stdset="0">
|
|
||||||
<size>
|
|
||||||
<width>40</width>
|
|
||||||
<height>20</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
</spacer>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<widget class="QPushButton" name="pushButton_ok">
|
|
||||||
<property name="text">
|
|
||||||
<string>确认</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<spacer name="horizontalSpacer">
|
|
||||||
<property name="orientation">
|
|
||||||
<enum>Qt::Horizontal</enum>
|
|
||||||
</property>
|
|
||||||
<property name="sizeType">
|
|
||||||
<enum>QSizePolicy::Fixed</enum>
|
|
||||||
</property>
|
|
||||||
<property name="sizeHint" stdset="0">
|
|
||||||
<size>
|
|
||||||
<width>10</width>
|
|
||||||
<height>20</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
</spacer>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<widget class="QPushButton" name="pushButton_cancel">
|
|
||||||
<property name="text">
|
|
||||||
<string>取消</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
</layout>
|
|
||||||
</item>
|
|
||||||
<item row="0" column="0" colspan="2">
|
|
||||||
<layout class="QGridLayout" name="gridLayout">
|
|
||||||
<item row="0" column="0">
|
|
||||||
<widget class="QLabel" name="label">
|
|
||||||
<property name="sizePolicy">
|
|
||||||
<sizepolicy hsizetype="Preferred" vsizetype="Expanding">
|
|
||||||
<horstretch>0</horstretch>
|
|
||||||
<verstretch>0</verstretch>
|
|
||||||
</sizepolicy>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string>输入模型文件路径</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="0" column="1">
|
|
||||||
<widget class="QLineEdit" name="lineInModel"/>
|
|
||||||
</item>
|
|
||||||
<item row="0" column="2">
|
|
||||||
<widget class="QPushButton" name="pbtInModel">
|
|
||||||
<property name="minimumSize">
|
|
||||||
<size>
|
|
||||||
<width>75</width>
|
|
||||||
<height>0</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="maximumSize">
|
|
||||||
<size>
|
|
||||||
<width>75</width>
|
|
||||||
<height>16777215</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string>打开文件</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="1" column="0">
|
|
||||||
<widget class="QLabel" name="label_2">
|
|
||||||
<property name="sizePolicy">
|
|
||||||
<sizepolicy hsizetype="Preferred" vsizetype="Expanding">
|
|
||||||
<horstretch>0</horstretch>
|
|
||||||
<verstretch>0</verstretch>
|
|
||||||
</sizepolicy>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string>输入预测数据路径</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="1" column="1">
|
|
||||||
<widget class="QLineEdit" name="lineInDataset"/>
|
|
||||||
</item>
|
|
||||||
<item row="1" column="2">
|
|
||||||
<widget class="QPushButton" name="pbtInDataset">
|
|
||||||
<property name="minimumSize">
|
|
||||||
<size>
|
|
||||||
<width>75</width>
|
|
||||||
<height>0</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="maximumSize">
|
|
||||||
<size>
|
|
||||||
<width>75</width>
|
|
||||||
<height>16777215</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string>打开文件夹</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="2" column="0">
|
|
||||||
<widget class="QLabel" name="label_3">
|
|
||||||
<property name="sizePolicy">
|
|
||||||
<sizepolicy hsizetype="Preferred" vsizetype="Expanding">
|
|
||||||
<horstretch>0</horstretch>
|
|
||||||
<verstretch>0</verstretch>
|
|
||||||
</sizepolicy>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string>预测结果文件路径</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="2" column="1">
|
|
||||||
<widget class="QLineEdit" name="linePreResult"/>
|
|
||||||
</item>
|
|
||||||
<item row="2" column="2">
|
|
||||||
<widget class="QPushButton" name="pbtPreResult">
|
|
||||||
<property name="minimumSize">
|
|
||||||
<size>
|
|
||||||
<width>75</width>
|
|
||||||
<height>0</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="maximumSize">
|
|
||||||
<size>
|
|
||||||
<width>75</width>
|
|
||||||
<height>16777215</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string>打开文件夹</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
</layout>
|
|
||||||
</item>
|
|
||||||
</layout>
|
|
||||||
</widget>
|
|
||||||
<layoutdefault spacing="6" margin="11"/>
|
|
||||||
<tabstops>
|
|
||||||
<tabstop>lineInModel</tabstop>
|
|
||||||
<tabstop>pbtInModel</tabstop>
|
|
||||||
<tabstop>lineInDataset</tabstop>
|
|
||||||
<tabstop>pbtInDataset</tabstop>
|
|
||||||
<tabstop>linePreResult</tabstop>
|
|
||||||
<tabstop>pbtPreResult</tabstop>
|
|
||||||
<tabstop>pushButton_ok</tabstop>
|
|
||||||
<tabstop>pushButton_cancel</tabstop>
|
|
||||||
</tabstops>
|
|
||||||
<resources>
|
|
||||||
<include location="LandslidePredict.qrc"/>
|
|
||||||
</resources>
|
|
||||||
<connections/>
|
|
||||||
</ui>
|
|
@ -1,10 +0,0 @@
|
|||||||
#include "LandslidePredict.h"
|
|
||||||
#include <QtWidgets/QApplication>
|
|
||||||
|
|
||||||
int main(int argc, char *argv[])
|
|
||||||
{
|
|
||||||
QApplication a(argc, argv);
|
|
||||||
LandslidePredict w;
|
|
||||||
w.CenterWidget()->show();
|
|
||||||
return a.exec();
|
|
||||||
}
|
|
@ -1 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="32" height="32" viewBox="0 0 32 32" fill="none"><g opacity="1" transform="translate(0 0) rotate(0 16 16)"><path id="路径 1 (轮廓)" fill-rule="evenodd" style="fill:#2C2C2C" transform="translate(0 1.5374328853267798) rotate(0 15.99999999999979 14.46256711467357)" opacity="1" d="M17.11 8.78L19.6 20.62L29.27 24.69L32 28.93L0 28.93L0 14.53L6.07 1.45L6.29 0.99L14.08 0L17.11 8.78ZM7.53 2.69L1.84 14.94L1.84 27.08L28.62 27.08L28.03 26.16L17.99 21.94L15.33 9.27L12.82 2.02L7.53 2.69Z" /><path id="路径 2" fill-rule="evenodd" style="fill:#2C2C2C" transform="translate(18.9798339264529 9.916436213707748) rotate(0 5.021363830056714 7.462944407974411)" opacity="1" d="M1.75,11.42L10.04,14.93L7.09,6.73L0.18,0L0,0.28L1.75,11.42Z " /><path id="路径 3" fill-rule="evenodd" style="fill:#2C2C2C" transform="translate(26.07423786983578 13.693975975768783) rotate(0 1.4741618583652738 1.3820267422174524)" opacity="1" d="M0.53,0.2C0.46,0.17 0.37,0.19 0.32,0.26C0.27,0.32 0.27,0.41 0.31,0.47L1.66,2.53C1.7,2.59 1.75,2.62 1.82,2.62C1.88,2.62 1.93,2.59 1.97,2.54L2.82,1.3C2.85,1.25 2.86,1.19 2.84,1.14C2.82,1.09 2.78,1.04 2.73,1.02L0.53,0.2Z " /><path id="路径 4" fill-rule="evenodd" style="fill:#2C2C2C" transform="translate(21.28321183014864 9.640030865264256) rotate(0 1.8427023229565922 1.5662969745131128)" opacity="1" d="M3.66,0.65C3.67,0.6 3.65,0.55 3.62,0.51C3.59,0.47 3.55,0.45 3.5,0.44L0.56,0.07C0.48,0.06 0.41,0.1 0.37,0.18C0.34,0.25 0.36,0.34 0.41,0.39L3.08,2.89C3.13,2.93 3.2,2.95 3.27,2.93C3.33,2.9 3.38,2.84 3.39,2.78L3.66,0.65Z " /></g></svg>
|
|
Before Width: | Height: | Size: 1.6 KiB |
Loading…
Reference in New Issue
Block a user