TwiceAsNice
2019-02-18
|
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include "define.h"
#include "globals.h"
#include "fft.h"
#include "prefs.h"
Macros | |
#define | SWAP(a, b) tempr=(a);(a)=(b);(b)=tempr |
Functions | |
void | fft_init (int nthreads) |
void | fft_end (int nthreads) |
void | fft_conv (float *data1, float *fdata2, int width, int height) |
float * | fft_rtf (float *data, int width, int height) |
void | fft_ctf (float *data, int width, int height, int sign) |
Variables | |
int | firsttimeflag |
void fft_conv | ( | float * | data1, |
float * | fdata2, | ||
int | width, | ||
int | height | ||
) |
void fft_ctf | ( | float * | data, |
int | width, | ||
int | height, | ||
int | sign | ||
) |
void fft_end | ( | int | nthreads | ) |
void fft_init | ( | int | nthreads | ) |
float* fft_rtf | ( | float * | data, |
int | width, | ||
int | height | ||
) |
int firsttimeflag |