32 lines
677 B
C
32 lines
677 B
C
#pragma once
|
||
/**
|
||
* 用于GF3影像的几何校正和正射处理的数据库
|
||
* @file GF3CalibrationAndOrthLib.h
|
||
* @brief GF3影像几何校正和正射处理的数据库
|
||
* @details
|
||
* 本库用于GF3影像的几何校正和正射处理,主要操作包括HH->VV极化的转换、影像的几何校正和正射处理等。
|
||
* 本库的实现基于GF3影像的几何校正和正射处理的相关算法,具体实现细节请参考相关文献。
|
||
* @author 陈增辉
|
||
*/
|
||
#ifndef __GF3CALIBRATIONANDORTHLIB__H__
|
||
#define __GF3CALIBRATIONANDORTHLIB__H__
|
||
#include "gf3calibrationandorthlib_global.h"
|
||
#include <QString>
|
||
|
||
|
||
|
||
|
||
extern "C" GF3CALIBRATIONANDORTHLIB_EXPORT int GF3_Sigma0_HH2VV(QString in_SigmaHHRasterPath,QString in_IncidencAngleRasterPath,QString out_SigmaVVRasterPath);
|
||
|
||
|
||
|
||
|
||
|
||
|
||
#endif
|
||
|
||
|
||
|
||
|
||
|