1 /* dft.c - discrete fourier transformation program */
4 * author: frank.zirkelbach@physik.uni-augsburg.de
10 int main(int argc,char **argv) {
20 strcpy(src.file,argv[1]);
21 strcpy(dst.file,argv[2]);
25 dst.width=src.info.width;
26 dst.height=src.info.height;
29 /* simple copy for testing by now ! */
30 memcpy(dst.map,src.map,src.info.imagesize);