forked from Pike1z/SETSM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LSF.hpp
18 lines (15 loc) · 848 Bytes
/
LSF.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
// LSF.hpp
//
//
// Created by Myoung-Jong Noh on 3/30/20.
//
#ifndef LSF_hpp
#define LSF_hpp
#include "SubFunctions.hpp"
//LSF smoothing
void LSFSmoothing_DEM(const char *savepath,const char* outputpath,const double MPP,const int divide);
CSize GetDEMsize(char *GIMP_path, char* metafilename,TransParam* param, double *grid_size, double* _minX, double* _maxY);
void DEM_STDKenel_LSF(LSFINFO *Grid_info, double* sigma_average,double* sigma_std, float *seeddem, float *smooth_DEM, const double grid_size, const int smooth_iteration,const CSize seeddem_size, const double MPP_stereo_angle);
double LocalSurfaceFitting_DEM(LSFINFO *Grid_info, float *input, long &numpts, double *fitted_Z, const double MPP, const int smooth_iter, const long row_size, const long col_size, const double grid, const long X, const long Y);
#endif /* LSF_hpp */