-
Notifications
You must be signed in to change notification settings - Fork 164
/
Copy pathinvert.c
77 lines (53 loc) · 1.54 KB
/
invert.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
69
70
71
72
73
74
75
/* Copyright 2016. The Regents of the University of California.
* Copyright 2024. TU Graz. Institute of Biomedical Imaging.
* All rights reserved. Use of this source code is governed by
* a BSD-style license which can be found in the LICENSE file.
*
* Authors:
* 2016 Jon Tamir
*/
#include <stdlib.h>
#include <assert.h>
#include <complex.h>
#include <stdio.h>
#include <math.h>
#include "num/multind.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[] = "Invert array (1 / <input>). The output is set to zero in case of divide by zero.";
int main_invert(int argc, char* argv[argc])
{
const char* in_file = NULL;
const char* out_file = NULL;
struct arg_s args[] = {
ARG_INFILE(true, &in_file, "input"),
ARG_OUTFILE(true, &out_file, "output"),
};
float reg = 0.;
const struct opt_s opts[] = {
OPT_FLOAT('r', ®, "reg", "regularization"),
};
cmdline(&argc, argv, ARRAY_SIZE(args), args, help_str, ARRAY_SIZE(opts), opts);
num_init();
long dims[DIMS];
complex float* idata = load_cfl(in_file, DIMS, dims);
complex float* odata = create_cfl(out_file, DIMS, dims);
#pragma omp parallel for
for (long i = 0; i < md_calc_size(DIMS, dims); i++) {
odata[i] = 0.;
if (0. == idata[i])
continue;
if (0. == reg)
odata[i] = 1. / idata[i];
else
odata[i] = conjf(idata[i]) / (powf(crealf(idata[i]), 2.) + powf(cimagf(idata[i]), 2.) + reg);
}
unmap_cfl(DIMS, dims, idata);
unmap_cfl(DIMS, dims, odata);
return 0;
}