处理统计计算
parent
9e9cd15702
commit
b60582b885
|
|
@ -1,347 +0,0 @@
|
||||||
#include "LookTableComputerClass.h"
|
|
||||||
#include "SatelliteOribtModel.h"
|
|
||||||
#include "SARSimulationTaskSetting.h"
|
|
||||||
#include "ImageOperatorBase.h"
|
|
||||||
#include "FileOperator.h"
|
|
||||||
#include "BaseConstVariable.h"
|
|
||||||
#include "GPUTool.cuh"
|
|
||||||
#include "LookTableSimulationComputer.cuh"
|
|
||||||
#include <QDebug>
|
|
||||||
|
|
||||||
#include "ImageShowDialogClass.h"
|
|
||||||
|
|
||||||
|
|
||||||
// dingy
|
|
||||||
|
|
||||||
|
|
||||||
namespace LookTableSimualtionMainProcessSpace {
|
|
||||||
void LookTableSimualtionMainProcess(
|
|
||||||
QString sateName,
|
|
||||||
QString orbitpath, QString SatePath, QString DEMPath, QString outDirPath,
|
|
||||||
bool gpuflag,
|
|
||||||
bool looktableflag,
|
|
||||||
bool checkBoxIncAngle,
|
|
||||||
bool DopplerFlag)
|
|
||||||
{
|
|
||||||
if (!isExists(orbitpath)) {
|
|
||||||
qDebug() << "Orbit model file is not exist !!!";
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (!isExists(SatePath)) {
|
|
||||||
qDebug() << "Satellite Model file is not exist !!!";
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (!isExists(DEMPath)) {
|
|
||||||
qDebug() << "DEM file is not exist !!!";
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// 读取轨道模型
|
|
||||||
qDebug() << "load orbit model params from xml :" << orbitpath;
|
|
||||||
PolyfitSatelliteOribtModel orbitmodel;
|
|
||||||
orbitmodel.loadFromXml(orbitpath);
|
|
||||||
|
|
||||||
// 轨道参数
|
|
||||||
long double OribtStartTime = orbitmodel.getOribtStartTime();
|
|
||||||
std::vector<double> PolyfitPx = orbitmodel.getPolyfitPx();
|
|
||||||
std::vector<double> PolyfitPy = orbitmodel.getPolyfitPy();
|
|
||||||
std::vector<double> PolyfitPz = orbitmodel.getPolyfitPz();
|
|
||||||
std::vector<double> PolyfitVx = orbitmodel.getPolyfitVx();
|
|
||||||
std::vector<double> PolyfitVy = orbitmodel.getPolyfitVy();
|
|
||||||
std::vector<double> PolyfitVz = orbitmodel.getPolyfitVz();
|
|
||||||
|
|
||||||
|
|
||||||
// 参数模型
|
|
||||||
qDebug() << "load simulation setting params from xml :" << orbitpath;
|
|
||||||
std::shared_ptr<AbstractSARSatelliteModel> SARSetting = ReadSimulationSettingsXML(SatePath);
|
|
||||||
|
|
||||||
// 多普勒参数
|
|
||||||
double dopplerRefrenceTime = SARSetting->getDopplerParametersReferenceTime();
|
|
||||||
std::vector<double> DopplerCentroidCoefficients = SARSetting->getDopplerCentroidCoefficients();
|
|
||||||
std::vector<double> DopplerRateValuesCoefficient = SARSetting->getDopplerRateValuesCoefficients();
|
|
||||||
|
|
||||||
// 仿真成像参数计算
|
|
||||||
double startTime = SARSetting->getSARImageStartTime();
|
|
||||||
double endTime = SARSetting->getSARImageStartTime();
|
|
||||||
|
|
||||||
double PRF = SARSetting->getPRF();
|
|
||||||
double Fs = SARSetting->getFs();
|
|
||||||
double nearRange = SARSetting->getNearRange();
|
|
||||||
double farRange = SARSetting->getFarRange();
|
|
||||||
double lamda = SARSetting->getCenterLamda();
|
|
||||||
// 输出结果处理
|
|
||||||
QString outLookTablePath = "";
|
|
||||||
QString outIncPath = "";
|
|
||||||
gdalImage demimg(DEMPath);
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if (looktableflag|| checkBoxIncAngle) {
|
|
||||||
outLookTablePath = JoinPath(outDirPath, sateName+"_looktable.bin");
|
|
||||||
|
|
||||||
|
|
||||||
LookTableSimulationDopplerProcess(
|
|
||||||
DEMPath, outLookTablePath,
|
|
||||||
OribtStartTime,
|
|
||||||
PolyfitPx, PolyfitPy, PolyfitPz,
|
|
||||||
PolyfitVx, PolyfitVy, PolyfitVz,
|
|
||||||
dopplerRefrenceTime,
|
|
||||||
DopplerCentroidCoefficients,
|
|
||||||
startTime,
|
|
||||||
endTime,
|
|
||||||
nearRange,
|
|
||||||
farRange,
|
|
||||||
PRF,
|
|
||||||
Fs,
|
|
||||||
lamda,
|
|
||||||
gpuflag,
|
|
||||||
looktableflag,
|
|
||||||
checkBoxIncAngle
|
|
||||||
);
|
|
||||||
}
|
|
||||||
if (checkBoxIncAngle) {
|
|
||||||
outIncPath = JoinPath(outDirPath, sateName + "_incAngle.bin");
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
void LookTableSimulationDopplerProcess(
|
|
||||||
QString DEMPath,
|
|
||||||
QString outLookTablePath,
|
|
||||||
|
|
||||||
long double OribtStartTime,
|
|
||||||
std::vector<double> PolyfitPx,
|
|
||||||
std::vector<double> PolyfitPy,
|
|
||||||
std::vector<double> PolyfitPz,
|
|
||||||
std::vector<double> PolyfitVx,
|
|
||||||
std::vector<double> PolyfitVy,
|
|
||||||
std::vector<double> PolyfitVz,
|
|
||||||
double dopplerRefrenceTime,
|
|
||||||
std::vector<double>
|
|
||||||
DopplerCentroidCoefficients,
|
|
||||||
double starttime,
|
|
||||||
double endtime,
|
|
||||||
double nearRange,
|
|
||||||
double farRange,
|
|
||||||
double PRF,
|
|
||||||
double Fs,
|
|
||||||
double lamda,
|
|
||||||
bool gpuflag,
|
|
||||||
bool looktableflag,
|
|
||||||
bool incflag
|
|
||||||
)
|
|
||||||
{
|
|
||||||
qDebug() << "generate look table ";
|
|
||||||
qDebug() << "DEMPath\t" << DEMPath;
|
|
||||||
qDebug() << "outLookTablePath\t" << outLookTablePath;
|
|
||||||
|
|
||||||
|
|
||||||
gdalImage demimg(DEMPath);
|
|
||||||
gdalImage outLookTable = CreategdalImage( // 创建查找表
|
|
||||||
outLookTablePath,
|
|
||||||
demimg.height, demimg.width, 2,
|
|
||||||
demimg.gt,
|
|
||||||
demimg.projection,
|
|
||||||
true,
|
|
||||||
true,
|
|
||||||
true
|
|
||||||
);
|
|
||||||
|
|
||||||
|
|
||||||
starttime = starttime - OribtStartTime; // 处理坐标时间
|
|
||||||
endtime = endtime - OribtStartTime;
|
|
||||||
|
|
||||||
// 轨道模型
|
|
||||||
double Xp0=0,Yp0=0,Zp0=0,Xv0=0,Yv0=0,Zv0=0;
|
|
||||||
double Xp1=0,Yp1=0,Zp1=0,Xv1=0,Yv1=0,Zv1=0;
|
|
||||||
double Xp2=0,Yp2=0,Zp2=0,Xv2=0,Yv2=0,Zv2=0;
|
|
||||||
double Xp3=0,Yp3=0,Zp3=0,Xv3=0,Yv3=0,Zv3=0;
|
|
||||||
double Xp4=0,Yp4=0,Zp4=0,Xv4=0,Yv4=0,Zv4=0;
|
|
||||||
double Xp5=0,Yp5=0,Zp5=0,Xv5=0,Yv5=0,Zv5=0;
|
|
||||||
int degree = PolyfitPx.size();
|
|
||||||
switch (degree){
|
|
||||||
case(6):
|
|
||||||
Xp5 = PolyfitPx[5];
|
|
||||||
Yp5 = PolyfitPy[5];
|
|
||||||
Zp5 = PolyfitPz[5];
|
|
||||||
Xv5 = PolyfitVx[5];
|
|
||||||
Yv5 = PolyfitVy[5];
|
|
||||||
Zv5 = PolyfitVz[5];
|
|
||||||
case(5):
|
|
||||||
Xp4 = PolyfitPx[4];
|
|
||||||
Yp4 = PolyfitPy[4];
|
|
||||||
Zp4 = PolyfitPz[4];
|
|
||||||
Xv4 = PolyfitVx[4];
|
|
||||||
Yv4 = PolyfitVy[4];
|
|
||||||
Zv4 = PolyfitVz[4];
|
|
||||||
case(4):
|
|
||||||
Xp3 = PolyfitPx[3];
|
|
||||||
Yp3 = PolyfitPy[3];
|
|
||||||
Zp3 = PolyfitPz[3];
|
|
||||||
Xv3 = PolyfitVx[3];
|
|
||||||
Yv3 = PolyfitVy[3];
|
|
||||||
Zv3 = PolyfitVz[3];
|
|
||||||
case(3):
|
|
||||||
Xp2 = PolyfitPx[2];
|
|
||||||
Yp2 = PolyfitPy[2];
|
|
||||||
Zp2 = PolyfitPz[2];
|
|
||||||
Xv2 = PolyfitVx[2];
|
|
||||||
Yv2 = PolyfitVy[2];
|
|
||||||
Zv2 = PolyfitVz[2];
|
|
||||||
case(2):
|
|
||||||
Xp1 = PolyfitPx[1];
|
|
||||||
Yp1 = PolyfitPy[1];
|
|
||||||
Zp1 = PolyfitPz[1];
|
|
||||||
Xv1 = PolyfitVx[1];
|
|
||||||
Yv1 = PolyfitVy[1];
|
|
||||||
Zv1 = PolyfitVz[1];
|
|
||||||
case(1):
|
|
||||||
Xp0 = PolyfitPx[0];
|
|
||||||
Yp0 = PolyfitPy[0];
|
|
||||||
Zp0 = PolyfitPz[0];
|
|
||||||
Xv0 = PolyfitVx[0];
|
|
||||||
Yv0 = PolyfitVy[0];
|
|
||||||
Zv0 = PolyfitVz[0];
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
// 多普勒参数
|
|
||||||
double r0 = 0, r1 = 0, r2 = 0, r3 = 0, r4 = 0;
|
|
||||||
degree = DopplerCentroidCoefficients.size();
|
|
||||||
switch (degree)
|
|
||||||
{
|
|
||||||
case(5):
|
|
||||||
r4 = DopplerCentroidCoefficients[4];
|
|
||||||
case(4):
|
|
||||||
r3 = DopplerCentroidCoefficients[3];
|
|
||||||
case(3):
|
|
||||||
r2 = DopplerCentroidCoefficients[2];
|
|
||||||
case(2):
|
|
||||||
r1 = DopplerCentroidCoefficients[1];
|
|
||||||
case(1):
|
|
||||||
r0 = DopplerCentroidCoefficients[0];
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// 处理分块
|
|
||||||
long GPUMemoryline = floor((Memory1MB * 2.0 / 8.0/3.0 / demimg.width*2000));//2GB
|
|
||||||
GPUMemoryline = GPUMemoryline < 1 ? 1 : GPUMemoryline;
|
|
||||||
|
|
||||||
// 内存预分配
|
|
||||||
|
|
||||||
//
|
|
||||||
std::shared_ptr<float> host_Rid((float*)mallocCUDAHost(sizeof(float) * GPUMemoryline * demimg.width), FreeCUDAHost);
|
|
||||||
std::shared_ptr<float> host_Cid((float*)mallocCUDAHost(sizeof(float) * GPUMemoryline * demimg.width), FreeCUDAHost);
|
|
||||||
|
|
||||||
std::shared_ptr<float> device_Rid((float*)mallocCUDADevice(sizeof(float) * GPUMemoryline * demimg.width), FreeCUDADevice);
|
|
||||||
std::shared_ptr<float> device_Cid((float*)mallocCUDADevice(sizeof(float) * GPUMemoryline * demimg.width), FreeCUDADevice);
|
|
||||||
|
|
||||||
//
|
|
||||||
std::shared_ptr<double> host_demX((double*)mallocCUDAHost(sizeof(double) * GPUMemoryline * demimg.width), FreeCUDAHost);
|
|
||||||
std::shared_ptr<double> host_demY((double*)mallocCUDAHost(sizeof(double) * GPUMemoryline * demimg.width), FreeCUDAHost);
|
|
||||||
std::shared_ptr<double> host_demZ((double*)mallocCUDAHost(sizeof(double) * GPUMemoryline * demimg.width), FreeCUDAHost);
|
|
||||||
|
|
||||||
std::shared_ptr<double> device_demX((double*)mallocCUDADevice(sizeof(double) * GPUMemoryline * demimg.width), FreeCUDADevice);
|
|
||||||
std::shared_ptr<double> device_demY((double*)mallocCUDADevice(sizeof(double) * GPUMemoryline * demimg.width), FreeCUDADevice);
|
|
||||||
std::shared_ptr<double> device_demZ((double*)mallocCUDADevice(sizeof(double) * GPUMemoryline * demimg.width), FreeCUDADevice);
|
|
||||||
|
|
||||||
//
|
|
||||||
//std::shared_ptr<ImageShowDialogClass> datashowptr(new ImageShowDialogClass);
|
|
||||||
|
|
||||||
// 处理复制结果
|
|
||||||
|
|
||||||
long rowcount = GPUMemoryline;
|
|
||||||
long colcount = demimg.width;
|
|
||||||
|
|
||||||
//rowcount = 1;
|
|
||||||
//colcount = 1;
|
|
||||||
//long testRid = demimg.height / 2;
|
|
||||||
//long testCid = demimg.width / 2;
|
|
||||||
|
|
||||||
double fact_lamda = 1 / lamda;
|
|
||||||
for (long rid = 0; rid < demimg.height; rid = rid + GPUMemoryline) {
|
|
||||||
qDebug() << "computer read file : " << rid << "~" << rowcount + rid << "\t:" << demimg.height;
|
|
||||||
std::shared_ptr<double> demX = readDataArr<double>(demimg, rid, 0, rowcount, colcount, 1,GDALREADARRCOPYMETHOD::VARIABLEMETHOD);// 行列数修改
|
|
||||||
std::shared_ptr<double> demY = readDataArr<double>(demimg, rid, 0, rowcount, colcount, 2,GDALREADARRCOPYMETHOD::VARIABLEMETHOD);
|
|
||||||
std::shared_ptr<double> demZ = readDataArr<double>(demimg, rid, 0, rowcount, colcount, 3,GDALREADARRCOPYMETHOD::VARIABLEMETHOD);
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//std::shared_ptr<double> demX = readDataArr<double>(demimg, rid, testCid, rowcount, colcount, 1, GDALREADARRCOPYMETHOD::VARIABLEMETHOD);// 行列数修改
|
|
||||||
//std::shared_ptr<double> demY = readDataArr<double>(demimg, rid, testCid, rowcount, colcount, 2, GDALREADARRCOPYMETHOD::VARIABLEMETHOD);
|
|
||||||
//std::shared_ptr<double> demZ = readDataArr<double>(demimg, rid, testCid, rowcount, colcount, 3, GDALREADARRCOPYMETHOD::VARIABLEMETHOD);
|
|
||||||
|
|
||||||
//demX.get()[0]=-1407793.922129;
|
|
||||||
//demY.get()[0]=5465044.940211;
|
|
||||||
//demZ.get()[0]=2963219.736386;
|
|
||||||
// 数据复制
|
|
||||||
memcpy(host_demX.get(), demX.get(), sizeof(double)* rowcount* colcount);
|
|
||||||
memcpy(host_demY.get(), demY.get(), sizeof(double)* rowcount* colcount);
|
|
||||||
memcpy(host_demZ.get(), demZ.get(), sizeof(double)* rowcount* colcount);
|
|
||||||
|
|
||||||
//内存->GPU
|
|
||||||
HostToDevice(host_demX.get(), device_demX.get(), sizeof(double)* GPUMemoryline* demimg.width);
|
|
||||||
HostToDevice(host_demY.get(), device_demY.get(), sizeof(double)* GPUMemoryline* demimg.width);
|
|
||||||
HostToDevice(host_demZ.get(), device_demZ.get(), sizeof(double)* GPUMemoryline* demimg.width);
|
|
||||||
|
|
||||||
qDebug() << "GPU computer start: " << rid << "~" << rowcount + rid << "\t:" << demimg.height;
|
|
||||||
RDProcess_dopplerGPU(
|
|
||||||
device_demX.get(), device_demY.get(), device_demZ.get(),
|
|
||||||
device_Rid.get(), device_Cid.get(),
|
|
||||||
rowcount, colcount,
|
|
||||||
starttime, nearRange, farRange,
|
|
||||||
PRF, Fs,
|
|
||||||
fact_lamda,
|
|
||||||
Xp0, Yp0, Zp0, Xv0, Yv0, Zv0,
|
|
||||||
Xp1, Yp1, Zp1, Xv1, Yv1, Zv1,
|
|
||||||
Xp2, Yp2, Zp2, Xv2, Yv2, Zv2,
|
|
||||||
Xp3, Yp3, Zp3, Xv3, Yv3, Zv3,
|
|
||||||
Xp4, Yp4, Zp4, Xv4, Yv4, Zv4,
|
|
||||||
Xp5, Yp5, Zp5, Xv5, Yv5, Zv5,
|
|
||||||
dopplerRefrenceTime, r0, r1, r2, r3, r4);
|
|
||||||
|
|
||||||
|
|
||||||
// GPU -> 内存
|
|
||||||
DeviceToHost(host_Rid.get(), device_Rid.get(), sizeof(float)* GPUMemoryline* demimg.width);
|
|
||||||
DeviceToHost(host_Cid.get(), device_Cid.get(), sizeof(float)* GPUMemoryline* demimg.width);
|
|
||||||
qDebug() << "GPU computer finished!!: " << rid << "~" << rowcount + rid << "\t:" << demimg.height;
|
|
||||||
//exit(-1);
|
|
||||||
// 数据存储
|
|
||||||
outLookTable.saveImage(host_Rid, rid, 0, rowcount, colcount,1);
|
|
||||||
outLookTable.saveImage(host_Cid, rid, 0, rowcount, colcount,2);
|
|
||||||
|
|
||||||
//datashowptr->load_double_data(host_Rid.get(), rowcount, colcount, QString("host_Rid"));
|
|
||||||
//datashowptr->exec();
|
|
||||||
|
|
||||||
qDebug() << "GPU computer result write finished: " << rid << "~" << rowcount + rid << "\t:" << demimg.height;
|
|
||||||
}
|
|
||||||
|
|
||||||
qDebug() << "look table computed finished!!!";
|
|
||||||
}
|
|
||||||
|
|
||||||
void LocalIncidenceAngleSimulationCompter(QString DEMPath, QString LookTablePath, QString outIncPath, long double OribtStartTime, std::vector<double> PolyfitPx, std::vector<double> PolyfitPy, std::vector<double> PolyfitPz, std::vector<double> PolyfitVx, std::vector<double> PolyfitVy, std::vector<double> PolyfitVz, double starttime, double endtime, double nearRange, double farRange, double PRF, double Fs)
|
|
||||||
{
|
|
||||||
//gdalImage outInc = CreategdalImageDouble(
|
|
||||||
// outIncPath,
|
|
||||||
// demimg.height, demimg.width, 1,
|
|
||||||
// demimg.gt,
|
|
||||||
// demimg.projection,
|
|
||||||
// true,
|
|
||||||
// true,
|
|
||||||
// true
|
|
||||||
//);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
@ -1,86 +0,0 @@
|
||||||
#pragma once
|
|
||||||
#include <QString>
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <memory>
|
|
||||||
#include <vector>
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* QString orbitpath = this->ui->OrbitModelPathLineEdit->text();
|
|
||||||
QString SatePath = this->ui->SateSettingLineEdit->text();
|
|
||||||
QString DEMPath = this->ui->DEMLineEdit->text();
|
|
||||||
QString outDirPath = this->ui->outDirLineEdit->text();
|
|
||||||
|
|
||||||
double gridX = this->ui->doubleSpinBoxGridX->value();
|
|
||||||
double gridY = this->ui->doubleSpinBoxGridY->value();
|
|
||||||
|
|
||||||
bool gpuflag = this->ui->radioButtonGPU->isChecked();
|
|
||||||
bool looktableflag = this->ui->LookTableCheck->checkState();
|
|
||||||
bool checkBoxIncAngle = this->ui->checkBoxIncAngle->checkState();
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
namespace LookTableSimualtionMainProcessSpace {
|
|
||||||
void LookTableSimualtionMainProcess(
|
|
||||||
QString sateName,
|
|
||||||
QString orbitpath, QString SatePath, QString DEMPath, QString outDirPath
|
|
||||||
, bool gpuflag, bool looktableflag, bool checkBoxIncAngle, bool DopplerFlag
|
|
||||||
);
|
|
||||||
|
|
||||||
void LookTableSimulationDopplerProcess(
|
|
||||||
QString DEMPath,
|
|
||||||
QString outLookTablePath,
|
|
||||||
|
|
||||||
// 多项式轨道参数
|
|
||||||
long double OribtStartTime, // 轨道模型参考时间
|
|
||||||
std::vector<double> PolyfitPx , // 5次项,空余填0
|
|
||||||
std::vector<double> PolyfitPy , // 5次项,空余填0
|
|
||||||
std::vector<double> PolyfitPz , // 5次项,空余填0
|
|
||||||
std::vector<double> PolyfitVx , // 5次项,空余填0
|
|
||||||
std::vector<double> PolyfitVy , // 5次项,空余填0
|
|
||||||
std::vector<double> PolyfitVz , // 5次项,空余填0
|
|
||||||
|
|
||||||
|
|
||||||
// 多普勒参数
|
|
||||||
double dopplerRefrenceTime,
|
|
||||||
std::vector<double> DopplerCentroidCoefficients,// d0 ~ d5, 空余填零
|
|
||||||
|
|
||||||
// 其他成像参数
|
|
||||||
double starttime, // 成像开始时间
|
|
||||||
double endtime, // 成像结束时间
|
|
||||||
double nearRange, // 近斜距
|
|
||||||
double farRange, // 远斜距
|
|
||||||
double PRF, // 脉冲重复采样频率
|
|
||||||
double Fs, // 距离采样频率
|
|
||||||
double lamda,
|
|
||||||
bool gpuflag,
|
|
||||||
bool looktableflag,
|
|
||||||
bool incflag
|
|
||||||
);
|
|
||||||
|
|
||||||
void LocalIncidenceAngleSimulationCompter(
|
|
||||||
QString DEMPath,
|
|
||||||
QString LookTablePath,
|
|
||||||
QString outIncPath,
|
|
||||||
long double OribtStartTime, // 轨道模型参考时间
|
|
||||||
std::vector<double> PolyfitPx, // 5次项,空余填0
|
|
||||||
std::vector<double> PolyfitPy, // 5次项,空余填0
|
|
||||||
std::vector<double> PolyfitPz, // 5次项,空余填0
|
|
||||||
std::vector<double> PolyfitVx, // 5次项,空余填0
|
|
||||||
std::vector<double> PolyfitVy, // 5次项,空余填0
|
|
||||||
std::vector<double> PolyfitVz, // 5次项,空余填0
|
|
||||||
|
|
||||||
|
|
||||||
double starttime, // 成像开始时间
|
|
||||||
double endtime, // 成像结束时间
|
|
||||||
double nearRange, // 近斜距
|
|
||||||
double farRange, // 远斜距
|
|
||||||
double PRF, // 脉冲重复采样频率
|
|
||||||
double Fs // 距离采样频率
|
|
||||||
|
|
||||||
);
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
@ -2,7 +2,18 @@
|
||||||
#include "ui_QSimulationLookTableDialog.h"
|
#include "ui_QSimulationLookTableDialog.h"
|
||||||
#include <QFileDialog>
|
#include <QFileDialog>
|
||||||
#include <QMessageBox>
|
#include <QMessageBox>
|
||||||
#include "LookTableComputerClass.h"
|
|
||||||
|
#include "SatelliteOribtModel.h"
|
||||||
|
#include "SARSimulationTaskSetting.h"
|
||||||
|
#include "ImageOperatorBase.h"
|
||||||
|
#include "FileOperator.h"
|
||||||
|
#include "BaseConstVariable.h"
|
||||||
|
#include "GPUTool.cuh"
|
||||||
|
#include "LookTableSimulationComputer.cuh"
|
||||||
|
#include <QDebug>
|
||||||
|
|
||||||
|
#include "ImageShowDialogClass.h"
|
||||||
|
#include "QToolProcessBarDialog.h"
|
||||||
|
|
||||||
QSimulationLookTableDialog::QSimulationLookTableDialog(QWidget *parent)
|
QSimulationLookTableDialog::QSimulationLookTableDialog(QWidget *parent)
|
||||||
: QDialog(parent),ui(new Ui::QSimulationLookTableDialogClass)
|
: QDialog(parent),ui(new Ui::QSimulationLookTableDialogClass)
|
||||||
|
|
@ -92,6 +103,319 @@ void QSimulationLookTableDialog::onpushButtonOutDirClicked(bool)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void QSimulationLookTableDialog::LookTableSimualtionMainProcess(QString sateName, QString orbitpath, QString SatePath, QString DEMPath, QString outDirPath, bool gpuflag, bool looktableflag, bool checkBoxIncAngle, bool DopplerFlag)
|
||||||
|
{
|
||||||
|
this->ui->progressBar->setMinimum(0);
|
||||||
|
this->ui->progressBar->setMaximum(100);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
if (!isExists(orbitpath)) {
|
||||||
|
qDebug() << "Orbit model file is not exist !!!";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!isExists(SatePath)) {
|
||||||
|
qDebug() << "Satellite Model file is not exist !!!";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!isExists(DEMPath)) {
|
||||||
|
qDebug() << "DEM file is not exist !!!";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// 读取轨道模型
|
||||||
|
qDebug() << "load orbit model params from xml :" << orbitpath;
|
||||||
|
PolyfitSatelliteOribtModel orbitmodel;
|
||||||
|
orbitmodel.loadFromXml(orbitpath);
|
||||||
|
|
||||||
|
// 轨道参数
|
||||||
|
long double OribtStartTime = orbitmodel.getOribtStartTime();
|
||||||
|
std::vector<double> PolyfitPx = orbitmodel.getPolyfitPx();
|
||||||
|
std::vector<double> PolyfitPy = orbitmodel.getPolyfitPy();
|
||||||
|
std::vector<double> PolyfitPz = orbitmodel.getPolyfitPz();
|
||||||
|
std::vector<double> PolyfitVx = orbitmodel.getPolyfitVx();
|
||||||
|
std::vector<double> PolyfitVy = orbitmodel.getPolyfitVy();
|
||||||
|
std::vector<double> PolyfitVz = orbitmodel.getPolyfitVz();
|
||||||
|
|
||||||
|
|
||||||
|
// 参数模型
|
||||||
|
qDebug() << "load simulation setting params from xml :" << orbitpath;
|
||||||
|
std::shared_ptr<AbstractSARSatelliteModel> SARSetting = ReadSimulationSettingsXML(SatePath);
|
||||||
|
|
||||||
|
// 多普勒参数
|
||||||
|
double dopplerRefrenceTime = SARSetting->getDopplerParametersReferenceTime();
|
||||||
|
std::vector<double> DopplerCentroidCoefficients = SARSetting->getDopplerCentroidCoefficients();
|
||||||
|
std::vector<double> DopplerRateValuesCoefficient = SARSetting->getDopplerRateValuesCoefficients();
|
||||||
|
|
||||||
|
// 仿真成像参数计算
|
||||||
|
double startTime = SARSetting->getSARImageStartTime();
|
||||||
|
double endTime = SARSetting->getSARImageStartTime();
|
||||||
|
|
||||||
|
double PRF = SARSetting->getPRF();
|
||||||
|
double Fs = SARSetting->getFs();
|
||||||
|
double nearRange = SARSetting->getNearRange();
|
||||||
|
double farRange = SARSetting->getFarRange();
|
||||||
|
double lamda = SARSetting->getCenterLamda();
|
||||||
|
// 输出结果处理
|
||||||
|
QString outLookTablePath = "";
|
||||||
|
QString outIncPath = "";
|
||||||
|
gdalImage demimg(DEMPath);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
if (looktableflag || checkBoxIncAngle) {
|
||||||
|
outLookTablePath = JoinPath(outDirPath, sateName + "_looktable.bin");
|
||||||
|
|
||||||
|
this->ui->label_tip->setText(u8"look table create...");
|
||||||
|
this->ui->progressBar->setValue(0);
|
||||||
|
this->LookTableSimulationDopplerProcess(
|
||||||
|
DEMPath, outLookTablePath,
|
||||||
|
OribtStartTime,
|
||||||
|
PolyfitPx, PolyfitPy, PolyfitPz,
|
||||||
|
PolyfitVx, PolyfitVy, PolyfitVz,
|
||||||
|
dopplerRefrenceTime,
|
||||||
|
DopplerCentroidCoefficients,
|
||||||
|
startTime,
|
||||||
|
endTime,
|
||||||
|
nearRange,
|
||||||
|
farRange,
|
||||||
|
PRF,
|
||||||
|
Fs,
|
||||||
|
lamda,
|
||||||
|
gpuflag,
|
||||||
|
looktableflag,
|
||||||
|
checkBoxIncAngle
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if (checkBoxIncAngle) {
|
||||||
|
this->ui->label_tip->setText(u8"sloper process...");
|
||||||
|
this->ui->progressBar->setValue(0);
|
||||||
|
outIncPath = JoinPath(outDirPath, sateName + "_incAngle.bin");
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void QSimulationLookTableDialog::LookTableSimulationDopplerProcess(QString DEMPath, QString outLookTablePath, long double OribtStartTime, std::vector<double> PolyfitPx, std::vector<double> PolyfitPy, std::vector<double> PolyfitPz, std::vector<double> PolyfitVx, std::vector<double> PolyfitVy, std::vector<double> PolyfitVz, double dopplerRefrenceTime, std::vector<double> DopplerCentroidCoefficients, double starttime, double endtime, double nearRange, double farRange, double PRF, double Fs, double lamda, bool gpuflag, bool looktableflag, bool incflag)
|
||||||
|
{
|
||||||
|
qDebug() << "generate look table ";
|
||||||
|
qDebug() << "DEMPath\t" << DEMPath;
|
||||||
|
qDebug() << "outLookTablePath\t" << outLookTablePath;
|
||||||
|
|
||||||
|
|
||||||
|
gdalImage demimg(DEMPath);
|
||||||
|
gdalImage outLookTable = CreategdalImage( // 创建查找表
|
||||||
|
outLookTablePath,
|
||||||
|
demimg.height, demimg.width, 2,
|
||||||
|
demimg.gt,
|
||||||
|
demimg.projection,
|
||||||
|
true,
|
||||||
|
true,
|
||||||
|
true
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
starttime = starttime - OribtStartTime; // 处理坐标时间
|
||||||
|
endtime = endtime - OribtStartTime;
|
||||||
|
|
||||||
|
// 轨道模型
|
||||||
|
double Xp0 = 0, Yp0 = 0, Zp0 = 0, Xv0 = 0, Yv0 = 0, Zv0 = 0;
|
||||||
|
double Xp1 = 0, Yp1 = 0, Zp1 = 0, Xv1 = 0, Yv1 = 0, Zv1 = 0;
|
||||||
|
double Xp2 = 0, Yp2 = 0, Zp2 = 0, Xv2 = 0, Yv2 = 0, Zv2 = 0;
|
||||||
|
double Xp3 = 0, Yp3 = 0, Zp3 = 0, Xv3 = 0, Yv3 = 0, Zv3 = 0;
|
||||||
|
double Xp4 = 0, Yp4 = 0, Zp4 = 0, Xv4 = 0, Yv4 = 0, Zv4 = 0;
|
||||||
|
double Xp5 = 0, Yp5 = 0, Zp5 = 0, Xv5 = 0, Yv5 = 0, Zv5 = 0;
|
||||||
|
int degree = PolyfitPx.size();
|
||||||
|
switch (degree) {
|
||||||
|
case(6):
|
||||||
|
Xp5 = PolyfitPx[5];
|
||||||
|
Yp5 = PolyfitPy[5];
|
||||||
|
Zp5 = PolyfitPz[5];
|
||||||
|
Xv5 = PolyfitVx[5];
|
||||||
|
Yv5 = PolyfitVy[5];
|
||||||
|
Zv5 = PolyfitVz[5];
|
||||||
|
case(5):
|
||||||
|
Xp4 = PolyfitPx[4];
|
||||||
|
Yp4 = PolyfitPy[4];
|
||||||
|
Zp4 = PolyfitPz[4];
|
||||||
|
Xv4 = PolyfitVx[4];
|
||||||
|
Yv4 = PolyfitVy[4];
|
||||||
|
Zv4 = PolyfitVz[4];
|
||||||
|
case(4):
|
||||||
|
Xp3 = PolyfitPx[3];
|
||||||
|
Yp3 = PolyfitPy[3];
|
||||||
|
Zp3 = PolyfitPz[3];
|
||||||
|
Xv3 = PolyfitVx[3];
|
||||||
|
Yv3 = PolyfitVy[3];
|
||||||
|
Zv3 = PolyfitVz[3];
|
||||||
|
case(3):
|
||||||
|
Xp2 = PolyfitPx[2];
|
||||||
|
Yp2 = PolyfitPy[2];
|
||||||
|
Zp2 = PolyfitPz[2];
|
||||||
|
Xv2 = PolyfitVx[2];
|
||||||
|
Yv2 = PolyfitVy[2];
|
||||||
|
Zv2 = PolyfitVz[2];
|
||||||
|
case(2):
|
||||||
|
Xp1 = PolyfitPx[1];
|
||||||
|
Yp1 = PolyfitPy[1];
|
||||||
|
Zp1 = PolyfitPz[1];
|
||||||
|
Xv1 = PolyfitVx[1];
|
||||||
|
Yv1 = PolyfitVy[1];
|
||||||
|
Zv1 = PolyfitVz[1];
|
||||||
|
case(1):
|
||||||
|
Xp0 = PolyfitPx[0];
|
||||||
|
Yp0 = PolyfitPy[0];
|
||||||
|
Zp0 = PolyfitPz[0];
|
||||||
|
Xv0 = PolyfitVx[0];
|
||||||
|
Yv0 = PolyfitVy[0];
|
||||||
|
Zv0 = PolyfitVz[0];
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 多普勒参数
|
||||||
|
double r0 = 0, r1 = 0, r2 = 0, r3 = 0, r4 = 0;
|
||||||
|
degree = DopplerCentroidCoefficients.size();
|
||||||
|
switch (degree)
|
||||||
|
{
|
||||||
|
case(5):
|
||||||
|
r4 = DopplerCentroidCoefficients[4];
|
||||||
|
case(4):
|
||||||
|
r3 = DopplerCentroidCoefficients[3];
|
||||||
|
case(3):
|
||||||
|
r2 = DopplerCentroidCoefficients[2];
|
||||||
|
case(2):
|
||||||
|
r1 = DopplerCentroidCoefficients[1];
|
||||||
|
case(1):
|
||||||
|
r0 = DopplerCentroidCoefficients[0];
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// 处理分块
|
||||||
|
long GPUMemoryline = floor((Memory1MB * 2.0 / 8.0 / 3.0 / demimg.width * 2000));//2GB
|
||||||
|
GPUMemoryline = GPUMemoryline < 1 ? 1 : GPUMemoryline;
|
||||||
|
|
||||||
|
// 内存预分配
|
||||||
|
|
||||||
|
//
|
||||||
|
std::shared_ptr<float> host_Rid((float*)mallocCUDAHost(sizeof(float) * GPUMemoryline * demimg.width), FreeCUDAHost);
|
||||||
|
std::shared_ptr<float> host_Cid((float*)mallocCUDAHost(sizeof(float) * GPUMemoryline * demimg.width), FreeCUDAHost);
|
||||||
|
|
||||||
|
std::shared_ptr<float> device_Rid((float*)mallocCUDADevice(sizeof(float) * GPUMemoryline * demimg.width), FreeCUDADevice);
|
||||||
|
std::shared_ptr<float> device_Cid((float*)mallocCUDADevice(sizeof(float) * GPUMemoryline * demimg.width), FreeCUDADevice);
|
||||||
|
|
||||||
|
//
|
||||||
|
std::shared_ptr<double> host_demX((double*)mallocCUDAHost(sizeof(double) * GPUMemoryline * demimg.width), FreeCUDAHost);
|
||||||
|
std::shared_ptr<double> host_demY((double*)mallocCUDAHost(sizeof(double) * GPUMemoryline * demimg.width), FreeCUDAHost);
|
||||||
|
std::shared_ptr<double> host_demZ((double*)mallocCUDAHost(sizeof(double) * GPUMemoryline * demimg.width), FreeCUDAHost);
|
||||||
|
|
||||||
|
std::shared_ptr<double> device_demX((double*)mallocCUDADevice(sizeof(double) * GPUMemoryline * demimg.width), FreeCUDADevice);
|
||||||
|
std::shared_ptr<double> device_demY((double*)mallocCUDADevice(sizeof(double) * GPUMemoryline * demimg.width), FreeCUDADevice);
|
||||||
|
std::shared_ptr<double> device_demZ((double*)mallocCUDADevice(sizeof(double) * GPUMemoryline * demimg.width), FreeCUDADevice);
|
||||||
|
|
||||||
|
//
|
||||||
|
//std::shared_ptr<ImageShowDialogClass> datashowptr(new ImageShowDialogClass);
|
||||||
|
|
||||||
|
// 处理复制结果
|
||||||
|
|
||||||
|
long rowcount = GPUMemoryline;
|
||||||
|
long colcount = demimg.width;
|
||||||
|
|
||||||
|
//rowcount = 1;
|
||||||
|
//colcount = 1;
|
||||||
|
//long testRid = demimg.height / 2;
|
||||||
|
//long testCid = demimg.width / 2;
|
||||||
|
|
||||||
|
double fact_lamda = 1 / lamda;
|
||||||
|
for (long rid = 0; rid < demimg.height; rid = rid + GPUMemoryline) {
|
||||||
|
qDebug() << "computer read file : " << rid << "~" << rowcount + rid << "\t:" << demimg.height;
|
||||||
|
std::shared_ptr<double> demX = readDataArr<double>(demimg, rid, 0, rowcount, colcount, 1, GDALREADARRCOPYMETHOD::VARIABLEMETHOD);// 行列数修改
|
||||||
|
std::shared_ptr<double> demY = readDataArr<double>(demimg, rid, 0, rowcount, colcount, 2, GDALREADARRCOPYMETHOD::VARIABLEMETHOD);
|
||||||
|
std::shared_ptr<double> demZ = readDataArr<double>(demimg, rid, 0, rowcount, colcount, 3, GDALREADARRCOPYMETHOD::VARIABLEMETHOD);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//std::shared_ptr<double> demX = readDataArr<double>(demimg, rid, testCid, rowcount, colcount, 1, GDALREADARRCOPYMETHOD::VARIABLEMETHOD);// 行列数修改
|
||||||
|
//std::shared_ptr<double> demY = readDataArr<double>(demimg, rid, testCid, rowcount, colcount, 2, GDALREADARRCOPYMETHOD::VARIABLEMETHOD);
|
||||||
|
//std::shared_ptr<double> demZ = readDataArr<double>(demimg, rid, testCid, rowcount, colcount, 3, GDALREADARRCOPYMETHOD::VARIABLEMETHOD);
|
||||||
|
|
||||||
|
//demX.get()[0]=-1407793.922129;
|
||||||
|
//demY.get()[0]=5465044.940211;
|
||||||
|
//demZ.get()[0]=2963219.736386;
|
||||||
|
// 数据复制
|
||||||
|
memcpy(host_demX.get(), demX.get(), sizeof(double) * rowcount * colcount);
|
||||||
|
memcpy(host_demY.get(), demY.get(), sizeof(double) * rowcount * colcount);
|
||||||
|
memcpy(host_demZ.get(), demZ.get(), sizeof(double) * rowcount * colcount);
|
||||||
|
|
||||||
|
//内存->GPU
|
||||||
|
HostToDevice(host_demX.get(), device_demX.get(), sizeof(double) * GPUMemoryline * demimg.width);
|
||||||
|
HostToDevice(host_demY.get(), device_demY.get(), sizeof(double) * GPUMemoryline * demimg.width);
|
||||||
|
HostToDevice(host_demZ.get(), device_demZ.get(), sizeof(double) * GPUMemoryline * demimg.width);
|
||||||
|
|
||||||
|
qDebug() << "GPU computer start: " << rid << "~" << rowcount + rid << "\t:" << demimg.height;
|
||||||
|
RDProcess_dopplerGPU(
|
||||||
|
device_demX.get(), device_demY.get(), device_demZ.get(),
|
||||||
|
device_Rid.get(), device_Cid.get(),
|
||||||
|
rowcount, colcount,
|
||||||
|
starttime, nearRange, farRange,
|
||||||
|
PRF, Fs,
|
||||||
|
fact_lamda,
|
||||||
|
Xp0, Yp0, Zp0, Xv0, Yv0, Zv0,
|
||||||
|
Xp1, Yp1, Zp1, Xv1, Yv1, Zv1,
|
||||||
|
Xp2, Yp2, Zp2, Xv2, Yv2, Zv2,
|
||||||
|
Xp3, Yp3, Zp3, Xv3, Yv3, Zv3,
|
||||||
|
Xp4, Yp4, Zp4, Xv4, Yv4, Zv4,
|
||||||
|
Xp5, Yp5, Zp5, Xv5, Yv5, Zv5,
|
||||||
|
dopplerRefrenceTime, r0, r1, r2, r3, r4);
|
||||||
|
|
||||||
|
|
||||||
|
// GPU -> 内存
|
||||||
|
DeviceToHost(host_Rid.get(), device_Rid.get(), sizeof(float) * GPUMemoryline * demimg.width);
|
||||||
|
DeviceToHost(host_Cid.get(), device_Cid.get(), sizeof(float) * GPUMemoryline * demimg.width);
|
||||||
|
qDebug() << "GPU computer finished!!: " << rid << "~" << rowcount + rid << "\t:" << demimg.height;
|
||||||
|
//exit(-1);
|
||||||
|
// 数据存储
|
||||||
|
outLookTable.saveImage(host_Rid, rid, 0, rowcount, colcount, 1);
|
||||||
|
outLookTable.saveImage(host_Cid, rid, 0, rowcount, colcount, 2);
|
||||||
|
|
||||||
|
//datashowptr->load_double_data(host_Rid.get(), rowcount, colcount, QString("host_Rid"));
|
||||||
|
//datashowptr->exec();
|
||||||
|
|
||||||
|
qDebug() << "GPU computer result write finished: " << rid << "~" << rowcount + rid << "\t:" << demimg.height;
|
||||||
|
|
||||||
|
this->ui->progressBar->setValue(floor(100.0*(rowcount + rid)/ demimg.height));
|
||||||
|
}
|
||||||
|
|
||||||
|
qDebug() << "look table computed finished!!!";
|
||||||
|
this->ui->progressBar->setValue(100);
|
||||||
|
}
|
||||||
|
|
||||||
|
void QSimulationLookTableDialog::LocalIncidenceAngleSimulationCompter(QString DEMPath, QString LookTablePath, QString outIncPath, long double OribtStartTime, std::vector<double> PolyfitPx, std::vector<double> PolyfitPy, std::vector<double> PolyfitPz, std::vector<double> PolyfitVx, std::vector<double> PolyfitVy, std::vector<double> PolyfitVz, double starttime, double endtime, double nearRange, double farRange, double PRF, double Fs)
|
||||||
|
{
|
||||||
|
//gdalImage outInc = CreategdalImageDouble(
|
||||||
|
// outIncPath,
|
||||||
|
// demimg.height, demimg.width, 1,
|
||||||
|
// demimg.gt,
|
||||||
|
// demimg.projection,
|
||||||
|
// true,
|
||||||
|
// true,
|
||||||
|
// true
|
||||||
|
//);
|
||||||
|
}
|
||||||
|
|
||||||
void QSimulationLookTableDialog::onaccepted()
|
void QSimulationLookTableDialog::onaccepted()
|
||||||
{
|
{
|
||||||
QString orbitpath = this->ui->OrbitModelPathLineEdit->text();
|
QString orbitpath = this->ui->OrbitModelPathLineEdit->text();
|
||||||
|
|
@ -107,7 +431,7 @@ void QSimulationLookTableDialog::onaccepted()
|
||||||
bool checkBoxIncAngle = this->ui->checkBoxIncAngle->isChecked();
|
bool checkBoxIncAngle = this->ui->checkBoxIncAngle->isChecked();
|
||||||
bool BoxDopplerFlag = this->ui->checkBoxDoppler->isChecked();
|
bool BoxDopplerFlag = this->ui->checkBoxDoppler->isChecked();
|
||||||
QString simulationName = this->ui->lineEditLookName->text();
|
QString simulationName = this->ui->lineEditLookName->text();
|
||||||
LookTableSimualtionMainProcessSpace::LookTableSimualtionMainProcess(
|
this->LookTableSimualtionMainProcess(
|
||||||
simulationName,
|
simulationName,
|
||||||
orbitpath, SatePath, DEMPath, outDirPath,
|
orbitpath, SatePath, DEMPath, outDirPath,
|
||||||
gpuflag, looktableflag, checkBoxIncAngle, BoxDopplerFlag
|
gpuflag, looktableflag, checkBoxIncAngle, BoxDopplerFlag
|
||||||
|
|
|
||||||
|
|
@ -29,4 +29,65 @@ public slots:
|
||||||
void onpushButtonOutDirClicked(bool);
|
void onpushButtonOutDirClicked(bool);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
private: // doppler 处理软件
|
||||||
|
void LookTableSimualtionMainProcess(
|
||||||
|
QString sateName,
|
||||||
|
QString orbitpath, QString SatePath, QString DEMPath, QString outDirPath
|
||||||
|
, bool gpuflag, bool looktableflag, bool checkBoxIncAngle, bool DopplerFlag
|
||||||
|
);
|
||||||
|
|
||||||
|
void LookTableSimulationDopplerProcess(
|
||||||
|
QString DEMPath,
|
||||||
|
QString outLookTablePath,
|
||||||
|
|
||||||
|
// 多项式轨道参数
|
||||||
|
long double OribtStartTime, // 轨道模型参考时间
|
||||||
|
std::vector<double> PolyfitPx, // 5次项,空余填0
|
||||||
|
std::vector<double> PolyfitPy, // 5次项,空余填0
|
||||||
|
std::vector<double> PolyfitPz, // 5次项,空余填0
|
||||||
|
std::vector<double> PolyfitVx, // 5次项,空余填0
|
||||||
|
std::vector<double> PolyfitVy, // 5次项,空余填0
|
||||||
|
std::vector<double> PolyfitVz, // 5次项,空余填0
|
||||||
|
|
||||||
|
|
||||||
|
// 多普勒参数
|
||||||
|
double dopplerRefrenceTime,
|
||||||
|
std::vector<double> DopplerCentroidCoefficients,// d0 ~ d5, 空余填零
|
||||||
|
|
||||||
|
// 其他成像参数
|
||||||
|
double starttime, // 成像开始时间
|
||||||
|
double endtime, // 成像结束时间
|
||||||
|
double nearRange, // 近斜距
|
||||||
|
double farRange, // 远斜距
|
||||||
|
double PRF, // 脉冲重复采样频率
|
||||||
|
double Fs, // 距离采样频率
|
||||||
|
double lamda,
|
||||||
|
bool gpuflag,
|
||||||
|
bool looktableflag,
|
||||||
|
bool incflag
|
||||||
|
);
|
||||||
|
|
||||||
|
void LocalIncidenceAngleSimulationCompter(
|
||||||
|
QString DEMPath,
|
||||||
|
QString LookTablePath,
|
||||||
|
QString outIncPath,
|
||||||
|
long double OribtStartTime, // 轨道模型参考时间
|
||||||
|
std::vector<double> PolyfitPx, // 5次项,空余填0
|
||||||
|
std::vector<double> PolyfitPy, // 5次项,空余填0
|
||||||
|
std::vector<double> PolyfitPz, // 5次项,空余填0
|
||||||
|
std::vector<double> PolyfitVx, // 5次项,空余填0
|
||||||
|
std::vector<double> PolyfitVy, // 5次项,空余填0
|
||||||
|
std::vector<double> PolyfitVz, // 5次项,空余填0
|
||||||
|
|
||||||
|
|
||||||
|
double starttime, // 成像开始时间
|
||||||
|
double endtime, // 成像结束时间
|
||||||
|
double nearRange, // 近斜距
|
||||||
|
double farRange, // 远斜距
|
||||||
|
double PRF, // 脉冲重复采样频率
|
||||||
|
double Fs // 距离采样频率
|
||||||
|
|
||||||
|
);
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -14,159 +14,6 @@
|
||||||
<string>QSimulationLookTableDialog</string>
|
<string>QSimulationLookTableDialog</string>
|
||||||
</property>
|
</property>
|
||||||
<layout class="QGridLayout" name="gridLayout">
|
<layout class="QGridLayout" name="gridLayout">
|
||||||
<item row="3" column="0">
|
|
||||||
<widget class="QLabel" name="label_3">
|
|
||||||
<property name="minimumSize">
|
|
||||||
<size>
|
|
||||||
<width>0</width>
|
|
||||||
<height>30</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string>DEM文件(XYZ)</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="3" column="1">
|
|
||||||
<widget class="QLineEdit" name="DEMLineEdit">
|
|
||||||
<property name="minimumSize">
|
|
||||||
<size>
|
|
||||||
<width>0</width>
|
|
||||||
<height>30</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string>D:\FZSimulation\LT1A\L20250210\LT1A_DEM_20250210_resampleXYZ.dat</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="5" column="1">
|
|
||||||
<widget class="QLineEdit" name="outDirLineEdit">
|
|
||||||
<property name="minimumSize">
|
|
||||||
<size>
|
|
||||||
<width>0</width>
|
|
||||||
<height>30</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string>D:\FZSimulation\LT1A\L20250210\Looktable</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="0" column="0">
|
|
||||||
<widget class="QLabel" name="label_7">
|
|
||||||
<property name="minimumSize">
|
|
||||||
<size>
|
|
||||||
<width>0</width>
|
|
||||||
<height>30</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string>多项式轨道模型参数:</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="0" column="2">
|
|
||||||
<widget class="QPushButton" name="pushButtonOrbitModel">
|
|
||||||
<property name="minimumSize">
|
|
||||||
<size>
|
|
||||||
<width>0</width>
|
|
||||||
<height>30</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string>选择</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="3" column="2">
|
|
||||||
<widget class="QPushButton" name="pushButtonDEM">
|
|
||||||
<property name="minimumSize">
|
|
||||||
<size>
|
|
||||||
<width>0</width>
|
|
||||||
<height>30</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string>选择</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="8" column="1">
|
|
||||||
<spacer name="verticalSpacer">
|
|
||||||
<property name="orientation">
|
|
||||||
<enum>Qt::Vertical</enum>
|
|
||||||
</property>
|
|
||||||
<property name="sizeHint" stdset="0">
|
|
||||||
<size>
|
|
||||||
<width>20</width>
|
|
||||||
<height>40</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
</spacer>
|
|
||||||
</item>
|
|
||||||
<item row="2" column="1">
|
|
||||||
<widget class="QCheckBox" name="checkBoxDoppler">
|
|
||||||
<property name="text">
|
|
||||||
<string>采用多普勒参数</string>
|
|
||||||
</property>
|
|
||||||
<property name="checked">
|
|
||||||
<bool>true</bool>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="1" column="1">
|
|
||||||
<widget class="QLineEdit" name="SateSettingLineEdit">
|
|
||||||
<property name="minimumSize">
|
|
||||||
<size>
|
|
||||||
<width>0</width>
|
|
||||||
<height>30</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string>D:\FZSimulation\LT1A\L20250210\LT1_Simulation_Setting.xml</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="1" column="2">
|
|
||||||
<widget class="QPushButton" name="pushButtonSataSetting">
|
|
||||||
<property name="minimumSize">
|
|
||||||
<size>
|
|
||||||
<width>0</width>
|
|
||||||
<height>30</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string>选择</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="1" column="0">
|
|
||||||
<widget class="QLabel" name="label_8">
|
|
||||||
<property name="minimumSize">
|
|
||||||
<size>
|
|
||||||
<width>0</width>
|
|
||||||
<height>30</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string>卫星仿真参数:</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="5" column="2">
|
|
||||||
<widget class="QPushButton" name="pushButtonOutDir">
|
|
||||||
<property name="minimumSize">
|
|
||||||
<size>
|
|
||||||
<width>0</width>
|
|
||||||
<height>30</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string>选择</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="6" column="0" rowspan="2">
|
<item row="6" column="0" rowspan="2">
|
||||||
<widget class="QGroupBox" name="groupBox_3">
|
<widget class="QGroupBox" name="groupBox_3">
|
||||||
<property name="title">
|
<property name="title">
|
||||||
|
|
@ -205,6 +52,39 @@
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
<item row="11" column="0" colspan="3">
|
||||||
|
<widget class="QDialogButtonBox" name="buttonBox">
|
||||||
|
<property name="standardButtons">
|
||||||
|
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="4" column="1">
|
||||||
|
<widget class="QLineEdit" name="lineEditLookName">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>0</width>
|
||||||
|
<height>30</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>LT1A_20250210</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="3" column="0">
|
||||||
|
<widget class="QLabel" name="label_3">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>0</width>
|
||||||
|
<height>30</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>DEM文件(XYZ)</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
<item row="8" column="0">
|
<item row="8" column="0">
|
||||||
<spacer name="verticalSpacer_2">
|
<spacer name="verticalSpacer_2">
|
||||||
<property name="orientation">
|
<property name="orientation">
|
||||||
|
|
@ -218,8 +98,8 @@
|
||||||
</property>
|
</property>
|
||||||
</spacer>
|
</spacer>
|
||||||
</item>
|
</item>
|
||||||
<item row="0" column="1">
|
<item row="5" column="2">
|
||||||
<widget class="QLineEdit" name="OrbitModelPathLineEdit">
|
<widget class="QPushButton" name="pushButtonOutDir">
|
||||||
<property name="minimumSize">
|
<property name="minimumSize">
|
||||||
<size>
|
<size>
|
||||||
<width>0</width>
|
<width>0</width>
|
||||||
|
|
@ -227,10 +107,111 @@
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>D:\FZSimulation\LT1A\L20250210\LT1_Simulation_OrbitModel.xml</string>
|
<string>选择</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
<item row="3" column="1">
|
||||||
|
<widget class="QLineEdit" name="DEMLineEdit">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>0</width>
|
||||||
|
<height>30</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>D:\FZSimulation\LT1A\L20250210\LT1A_DEM_20250210_resampleXYZ.dat</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="5" column="0">
|
||||||
|
<widget class="QLabel" name="label_9">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>0</width>
|
||||||
|
<height>30</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>结果文件保存地址:</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="0" column="0">
|
||||||
|
<widget class="QLabel" name="label_7">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>0</width>
|
||||||
|
<height>30</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>多项式轨道模型参数:</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="4" column="0">
|
||||||
|
<widget class="QLabel" name="label">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>0</width>
|
||||||
|
<height>30</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>查找表名</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="0" column="2">
|
||||||
|
<widget class="QPushButton" name="pushButtonOrbitModel">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>0</width>
|
||||||
|
<height>30</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>选择</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="2" column="1">
|
||||||
|
<widget class="QCheckBox" name="checkBoxDoppler">
|
||||||
|
<property name="text">
|
||||||
|
<string>采用多普勒参数</string>
|
||||||
|
</property>
|
||||||
|
<property name="checked">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="3" column="2">
|
||||||
|
<widget class="QPushButton" name="pushButtonDEM">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>0</width>
|
||||||
|
<height>30</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>选择</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="8" column="1">
|
||||||
|
<spacer name="verticalSpacer">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Vertical</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>20</width>
|
||||||
|
<height>40</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
<item row="7" column="1">
|
<item row="7" column="1">
|
||||||
<widget class="QGroupBox" name="groupBox_2">
|
<widget class="QGroupBox" name="groupBox_2">
|
||||||
<property name="title">
|
<property name="title">
|
||||||
|
|
@ -272,15 +253,8 @@
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="9" column="0" colspan="3">
|
<item row="1" column="0">
|
||||||
<widget class="QDialogButtonBox" name="buttonBox">
|
<widget class="QLabel" name="label_8">
|
||||||
<property name="standardButtons">
|
|
||||||
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="5" column="0">
|
|
||||||
<widget class="QLabel" name="label_9">
|
|
||||||
<property name="minimumSize">
|
<property name="minimumSize">
|
||||||
<size>
|
<size>
|
||||||
<width>0</width>
|
<width>0</width>
|
||||||
|
|
@ -288,12 +262,12 @@
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>结果文件保存地址:</string>
|
<string>卫星仿真参数:</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="4" column="0">
|
<item row="1" column="2">
|
||||||
<widget class="QLabel" name="label">
|
<widget class="QPushButton" name="pushButtonSataSetting">
|
||||||
<property name="minimumSize">
|
<property name="minimumSize">
|
||||||
<size>
|
<size>
|
||||||
<width>0</width>
|
<width>0</width>
|
||||||
|
|
@ -301,12 +275,12 @@
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>查找表名</string>
|
<string>选择</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="4" column="1">
|
<item row="1" column="1">
|
||||||
<widget class="QLineEdit" name="lineEditLookName">
|
<widget class="QLineEdit" name="SateSettingLineEdit">
|
||||||
<property name="minimumSize">
|
<property name="minimumSize">
|
||||||
<size>
|
<size>
|
||||||
<width>0</width>
|
<width>0</width>
|
||||||
|
|
@ -314,7 +288,47 @@
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>LT1A_20250210</string>
|
<string>D:\FZSimulation\LT1A\L20250210\LT1_Simulation_Setting.xml</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="5" column="1">
|
||||||
|
<widget class="QLineEdit" name="outDirLineEdit">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>0</width>
|
||||||
|
<height>30</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>D:\FZSimulation\LT1A\L20250210\Looktable</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="0" column="1">
|
||||||
|
<widget class="QLineEdit" name="OrbitModelPathLineEdit">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>0</width>
|
||||||
|
<height>30</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>D:\FZSimulation\LT1A\L20250210\LT1_Simulation_OrbitModel.xml</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="9" column="1">
|
||||||
|
<widget class="QProgressBar" name="progressBar">
|
||||||
|
<property name="value">
|
||||||
|
<number>24</number>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="9" column="0">
|
||||||
|
<widget class="QLabel" name="label_tip">
|
||||||
|
<property name="text">
|
||||||
|
<string/>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
|
|
||||||
|
|
@ -113,7 +113,6 @@
|
||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="PowerSimulationIncoherent\LookTableComputerClass.cpp" />
|
|
||||||
<ClCompile Include="PowerSimulationIncoherent\OribtModelOperator.cpp" />
|
<ClCompile Include="PowerSimulationIncoherent\OribtModelOperator.cpp" />
|
||||||
<ClCompile Include="PowerSimulationIncoherent\QSimulationLookTableDialog.cpp" />
|
<ClCompile Include="PowerSimulationIncoherent\QSimulationLookTableDialog.cpp" />
|
||||||
<ClCompile Include="PowerSimulationIncoherent\QSimulationSARPolynomialOrbitModel.cpp" />
|
<ClCompile Include="PowerSimulationIncoherent\QSimulationSARPolynomialOrbitModel.cpp" />
|
||||||
|
|
@ -128,7 +127,6 @@
|
||||||
<ClCompile Include="SimulationSAR\SigmaDatabase.cpp" />
|
<ClCompile Include="SimulationSAR\SigmaDatabase.cpp" />
|
||||||
<ClCompile Include="SimulationSAR\TBPImageAlgCls.cpp" />
|
<ClCompile Include="SimulationSAR\TBPImageAlgCls.cpp" />
|
||||||
<QtMoc Include="PowerSimulationIncoherent\QSimulationSARPolynomialOrbitModel.h" />
|
<QtMoc Include="PowerSimulationIncoherent\QSimulationSARPolynomialOrbitModel.h" />
|
||||||
<ClInclude Include="PowerSimulationIncoherent\LookTableComputerClass.h" />
|
|
||||||
<CudaCompile Include="PowerSimulationIncoherent\LookTableSimulationComputer.cuh" />
|
<CudaCompile Include="PowerSimulationIncoherent\LookTableSimulationComputer.cuh" />
|
||||||
<ClInclude Include="PowerSimulationIncoherent\OribtModelOperator.h" />
|
<ClInclude Include="PowerSimulationIncoherent\OribtModelOperator.h" />
|
||||||
<QtMoc Include="PowerSimulationIncoherent\QSimulationLookTableDialog.h" />
|
<QtMoc Include="PowerSimulationIncoherent\QSimulationLookTableDialog.h" />
|
||||||
|
|
|
||||||
|
|
@ -59,9 +59,6 @@
|
||||||
<ClInclude Include="PowerSimulationIncoherent\OribtModelOperator.h">
|
<ClInclude Include="PowerSimulationIncoherent\OribtModelOperator.h">
|
||||||
<Filter>PowerSimulationIncoherent</Filter>
|
<Filter>PowerSimulationIncoherent</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
<ClInclude Include="PowerSimulationIncoherent\LookTableComputerClass.h">
|
|
||||||
<Filter>PowerSimulationIncoherent</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="SimulationSAR\QImageSARRFPC.cpp">
|
<ClCompile Include="SimulationSAR\QImageSARRFPC.cpp">
|
||||||
|
|
@ -103,9 +100,6 @@
|
||||||
<ClCompile Include="PowerSimulationIncoherent\QSimulationLookTableDialog.cpp">
|
<ClCompile Include="PowerSimulationIncoherent\QSimulationLookTableDialog.cpp">
|
||||||
<Filter>PowerSimulationIncoherent</Filter>
|
<Filter>PowerSimulationIncoherent</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="PowerSimulationIncoherent\LookTableComputerClass.cpp">
|
|
||||||
<Filter>PowerSimulationIncoherent</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<QtUic Include="SimulationSAR\QImageSARRFPC.ui">
|
<QtUic Include="SimulationSAR\QImageSARRFPC.ui">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue