Newer
Older
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
/* test.cc
Christian F. Beckmann, FMRIB Analysis Group
Copyright (C) 1999-20013 University of Oxford */
/* CCOPYRIGHT */
#include "libvis/miscplot.h"
#include "miscmaths/miscmaths.h"
#include "miscmaths/miscprob.h"
#include "utils/options.h"
#include <vector>
#include <ctime>
#include "newimage/newimageall.h"
#include "melhlprfns.h"
#include <iostream>
#ifdef __APPLE__
#include <mach/mach.h>
#define memmsg(msg) { \
struct task_basic_info t_info; \
mach_msg_type_number_t t_info_count = TASK_BASIC_INFO_COUNT; \
if (KERN_SUCCESS == task_info(mach_task_self(), TASK_BASIC_INFO, (task_info_t) &t_info, &t_info_count)) \
{ \
cout << msg << " res: " << t_info.resident_size/1000000 << " virt: " << t_info.virtual_size/1000000 << "\n"; \
cout.flush(); \
} \
}
#else
#define memmsg(msg) { \
cout << msg; \
}
#endif
// a simple message macro that takes care of cout and log
#define message(msg) { \
cout << msg; \
cout.flush(); \
}
#define outMsize(msg,Mat) { \
cerr << " " << msg << " " <<Mat.Nrows() << " x " << Mat.Ncols() << endl; \
}
using namespace MISCPLOT;
using namespace MISCMATHS;
using namespace Utilities;
using namespace std;
using namespace Melodic;
// GLOBALS
clock_t tictime;
// The two strings below specify the title and example usage that is
// printed out as the help or usage message
string title=string("fsl_BLAH")+
string("\nAuthor: Christian F. Beckmann \nCopyright(c) 2008-2013 University of Oxford\n")+
string(" \n \n")+
string(" \n");
string examples="fsl_BLAH [options]";
//Command line Options {
Option<string> fnin(string("-i,--in"), string(""),
string("input file name (matrix 3D or 4D image)"),
false, requires_argument);
Option<string> fnmask(string("-m"), string(""),
string("mask file name "),
false, requires_argument);
Option<int> help(string("-h,--help"), 0,
string("display this help text"),
false,no_argument);
Option<int> xdim(string("-x,--xdim"), 0,
string("xdim"),
false,requires_argument);
Option<int> ydim(string("-y,--ydim"), 0,
string("ydim"),
false,requires_argument);
Option<int> econ(string("-e,--econ"), 0,
string("econ: how to liump stuff"),
false,requires_argument);
/*
}
*/
////////////////////////////////////////////////////////////////////////////
// Local functions
void tic(){
tictime = clock();
}
void toc(){
cerr << endl << "TOC: " << float(clock()-tictime)/CLOCKS_PER_SEC << " seconds" << endl<<endl;
}
Matrix calccorr(const Matrix& in, int econ)
{
Matrix Res;
int nrows=in.Nrows();
int ncols=in.Ncols();
Res = zeros(nrows,nrows);
if(econ>0){
RowVector colmeans(ncols);
for (int n=1; n<=ncols; n++) {
colmeans(n)=0;
for (int m=1; m<=nrows; m++) {
colmeans(n)+=in(m,n);
}
colmeans(n)/=nrows;
}
int dcol = econ;
Matrix suba;
for(int ctr=1; ctr <= in.Ncols(); ctr+=dcol){
suba=in.SubMatrix(1,nrows,ctr,Min(ctr+dcol-1,ncols));
int scolmax = suba.Ncols();
for (int n=1; n<=scolmax; n++) {
double cmean=colmeans(ctr + n - 1);
for (int m=1; m<=nrows; m++) {
suba(m,n)-=cmean;
}
}
Res += suba*suba.t() / ncols;
}
}
else
Res = cov(in.t());
return Res;
} //Matrix calccorr
void convert_to_mat(volume4D<float>& in, volume<float>& mask, Matrix& out)
{
out = in[0].vec(mask).t();
in.deletevolume(0);
while(in.tsize()>0){
out &= in[0].vec(mask).t();
in.deletevolume(0);
}
}
int do_work(int argc, char* argv[]) {
tic();
Matrix MatrixData;
volume<float> Mean;
if(xdim.value()==0 && ydim.value()==0)
{
volume4D<float> RawData;
volume<float> theMask;
toc();
//read data
message("Reading data file " << (string)fnin.value() << " ... ");
read_volume4D(RawData,fnin.value());
message(" done" << endl);
Mean = meanvol(RawData);
toc();
message("Reading mask file " << (string)fnmask.value() << " ... ");
read_volume(theMask,fnmask.value());
MatrixData = RawData.matrix();
memmsg("start");
Matrix res;
convert_to_mat(RawData,theMask, res);
memmsg(" Before reshape ");
write_ascii_matrix("mat1", res);
write_ascii_matrix("mat2", MatrixData);
}
else{
Matrix data = unifrnd(xdim.value(),ydim.value());
outMsize("data", data);
tic(); calccorr(data,econ.value()); toc();
data = unifrnd(10,100);
outMsize("data", data);
tic(); calccorr(data,econ.value()); toc();
data = unifrnd(100,1000);
outMsize("data", data);
tic(); calccorr(data,econ.value()); toc();
data = unifrnd(100,10000);
outMsize("data", data);
tic(); calccorr(data,econ.value()); toc();
data = unifrnd(300,200000);
outMsize("data", data);
tic(); calccorr(data,econ.value()); toc();
data = unifrnd(500,20000);
outMsize("data", data);
tic(); calccorr(data,econ.value()); toc();
data = unifrnd(500,200000);
outMsize("data", data);
tic(); calccorr(data,econ.value()); toc();
}
return 0;
}
////////////////////////////////////////////////////////////////////////////
int main(int argc,char *argv[]){
Tracer tr("main");
OptionParser options(title, examples);
try{
// must include all wanted options here (the order determines how
// the help message is printed)
options.add(fnin);
options.add(fnmask);
options.add(help);
options.add(xdim);
options.add(ydim);
options.add(econ);
options.parse_command_line(argc, argv);
// line below stops the program if the help was requested or
// a compulsory option was not set
if ( (help.value()) || (!options.check_compulsory_arguments(true)) ){
options.usage();
exit(EXIT_FAILURE);
}else{
// Call the local functions
return do_work(argc,argv);
}
}catch(X_OptionError& e) {
options.usage();
cerr << endl << e.what() << endl;
exit(EXIT_FAILURE);
}catch(std::exception &e) {
cerr << e.what() << endl;
}
}