2025-04-05 04:16:22 +00:00
|
|
|
#pragma once
|
|
|
|
#ifndef __ImageNetOperator__H_
|
|
|
|
#define __ImageNetOperator__H_
|
|
|
|
#include "BaseConstVariable.h"
|
|
|
|
#include <QString>
|
|
|
|
|
|
|
|
|
|
|
|
void InitCreateImageXYZProcess(QString& outImageLLPath, QString& outImageXYZPath, QString& InEchoGPSDataPath, double& NearRange, double& RangeResolution, int64_t& RangeNum);
|
|
|
|
|
2025-04-06 06:29:35 +00:00
|
|
|
bool OverlapCheck(QString& ImageLLPath, QString& ImageDEMPath);
|
2025-04-05 04:16:22 +00:00
|
|
|
|
2025-04-06 08:48:37 +00:00
|
|
|
bool GPSPointsNumberEqualCheck(QString& ImageLLPath, QString& InEchoGPSDataPath);
|
|
|
|
|
2025-04-07 16:13:36 +00:00
|
|
|
void InterploateClipAtiByRefDEM(QString ImageLLPath, QString& ImageDEMPath, QString& outImageLLAPath, QString& InEchoGPSDataPath);
|
2025-04-06 08:48:37 +00:00
|
|
|
void InterploateAtiByRefDEM(QString& ImageLLPath, QString& ImageDEMPath, QString& outImageLLAPath, QString& InEchoGPSDataPath);
|
2025-04-07 13:46:53 +00:00
|
|
|
int ReflectTable_WGS2Range(QString dem_rc_path, QString outOriSimTiffPath, QString ori_sim_count_tiffPath, long OriHeight, long OriWidth);
|
2025-04-08 02:18:00 +00:00
|
|
|
|
|
|
|
int ResampleEChoDataFromGeoEcho(QString L2echodataPath, QString RangeLooktablePath, QString L1AEchoDataPath);
|
|
|
|
|
2025-04-10 10:32:25 +00:00
|
|
|
|
|
|
|
void InterpLookTableRfromDEM(QString lonlatPath, QString DEMPath, QString outllrpath);
|
|
|
|
|
|
|
|
void RangeLooktableLLA_2_RangeLooktableXYZ(QString LLAPath, QString outXYZPath);
|
|
|
|
|
|
|
|
|
2025-04-05 04:16:22 +00:00
|
|
|
#endif
|