ISCE_INSAR/components/zerodop/GPUresampslc/include/ResampMethods.h

24 lines
415 B
C
Raw Normal View History

2019-01-16 19:40:08 +00:00
//
// Author: Joshua Cohen
// Copyright 2017
//
#ifndef RESAMP_METHODS_H
#define RESAMP_METHODS_H
#include <complex>
#include <vector>
using std::complex;
using std::vector;
struct ResampMethods {
vector<float> fintp;
float f_delay;
ResampMethods();
void prepareMethods(int);
complex<float> interpolate_cx(vector<vector<complex<float> > >&,int,int,double,double,int,int,int);
};
#endif