-
Notifications
You must be signed in to change notification settings - Fork 0
/
DFT.h
25 lines (21 loc) · 843 Bytes
/
DFT.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef FFT_DFT_H
#define FFT_DFT_H
errno_t fft_DFT(const char *IDin_name,
const char *IDinmask_name,
const char *IDout_name,
const char *IDoutmask_name,
double Zfactor,
int dir,
long kin,
imageID *outID);
errno_t fft_DFTinsertFPM(const char *pupin_name,
const char *fpmz_name,
double zfactor,
const char *pupout_name,
imageID *outID);
errno_t fft_DFTinsertFPM_re(const char *pupin_name,
const char *fpmz_name,
double zfactor,
const char *pupout_name,
imageID *outID);
#endif