-
Notifications
You must be signed in to change notification settings - Fork 165
/
fftshift.c
70 lines (47 loc) · 1.33 KB
/
fftshift.c
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/* Copyright 2015. The Regents of the University of California.
* All rights reserved. Use of this source code is governed by
* a BSD-style license which can be found in the LICENSE file.
*
* Authors:
* 2012, 2015 Martin Uecker
*/
#include <stdlib.h>
#include <assert.h>
#include <stdbool.h>
#include <stdio.h>
#include <complex.h>
#include "num/multind.h"
#include "num/fft.h"
#include "num/init.h"
#include "misc/mmio.h"
#include "misc/misc.h"
#include "misc/opts.h"
#ifndef DIMS
#define DIMS 16
#endif
static const char help_str[] = "Apply fftshift along dimensions selected by the {bitmask}.";
int main_fftshift(int argc, char* argv[argc])
{
unsigned long flags = 0;
const char* in_file = NULL;
const char* out_file = NULL;
struct arg_s args[] = {
ARG_ULONG(true, &flags, "bitmask"),
ARG_INFILE(true, &in_file, "input"),
ARG_OUTFILE(true, &out_file, "output"),
};
bool b = false;
const struct opt_s opts[] = {
OPT_SET('b', &b, "apply ifftshift"),
};
cmdline(&argc, argv, ARRAY_SIZE(args), args, help_str, ARRAY_SIZE(opts), opts);
num_init();
int N = DIMS;
long dims[N];
complex float* idata = load_cfl(in_file, N, dims);
complex float* odata = create_cfl(out_file, N, dims);
(b ? ifftshift : fftshift)(N, dims, flags, odata, idata);
unmap_cfl(N, dims, idata);
unmap_cfl(N, dims, odata);
return 0;
}