fmriPredictor.cpp 15.2 KB
Newer Older
wangkx1's avatar
init  
wangkx1 committed
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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
/*! \file fmriPredictor.cpp
    \brief Contains definitions for class for making Gaussian process based predictions about fMRI data.

    \author Jesper Andersson
    \version 1.0b, Feb., 2022.
*/
// Definitions of class to make Gaussian-Process
// based predictions about diffusion data.
//
// fmriPredictor.cpp
//
// Jesper Andersson, FMRIB Image Analysis Group
//
// Copyright (C) 2022 University of Oxford
//

#include <cstdlib>
#include <string>
#include <vector>
#include <cmath>
#include "armawrap/newmat.h"
#include "newimage/newimageall.h"
#include "miscmaths/miscmaths.h"
#include "EddyHelperClasses.h"
#include "EddyUtils.h"
#include "KMatrix.h"
#include "HyParEstimator.h"
#include "fmriPredictor.h"

using namespace EDDY;

NEWIMAGE::volume<float> fmriPredictor::Predict(unsigned int indx,
					       bool         exclude) const EddyTry
{
  if (!IsPopulated()) throw EddyException("fmriPredictor::Predict:const: Not yet fully populated");
  if (!IsValid()) throw EddyException("fmriPredictor::Predict:const: Not yet ready for predictions");
  arma::rowvec pv = _Kmats[_glist[indx]._sess]->PredVec(_glist[indx]._sindx,exclude); // Calls const version
  NEWIMAGE::volume<float> pi = *(_slist[0].SPtr(0)); pi = 0.0;
  #ifdef COMPILE_GPU
  predict_image_gpu(indx,exclude,pv,pi);
  #else
  predict_image_cpu(indx,exclude,pv,pi);
  #endif
  return(pi);
} EddyCatch

NEWIMAGE::volume<float> fmriPredictor::Predict(unsigned int indx,
					       bool         exclude) EddyTry
{
  if (!IsPopulated()) throw EddyException("fmriPredictor::Predict:non-const: Not yet fully populated");
  if (!IsValid()) throw EddyException("fmriPredictor::Predict:non-const: Not yet ready for predictions");
  arma::rowvec pv = _Kmats[_glist[indx]._sess]->PredVec(_glist[indx]._sindx,exclude); // Calls non-const version
  NEWIMAGE::volume<float> pi = *(_slist[0].SPtr(0)); pi = 0.0;
  #ifdef COMPILE_GPU
  predict_image_gpu(indx,exclude,pv,pi);
  #else
  predict_image_cpu(indx,exclude,pv,pi);
  #endif
  return(pi);
} EddyCatch

NEWIMAGE::volume<float> fmriPredictor::PredictCPU(unsigned int indx,
						  bool         exclude) EddyTry
{
  if (!IsPopulated()) throw EddyException("fmriPredictor::Predict:non-const: Not yet fully populated");
  if (!IsValid()) throw EddyException("fmriPredictor::Predict:non-const: Not yet ready for predictions");
  arma::rowvec pv = _Kmats[_glist[indx]._sess]->PredVec(_glist[indx]._sindx,exclude); // Calls non-const version
  NEWIMAGE::volume<float> pi = *(_slist[0].SPtr(0)); pi = 0.0;
  predict_image_cpu(indx,exclude,pv,pi);
  return(pi);
} EddyCatch

std::vector<NEWIMAGE::volume<float> > fmriPredictor::Predict(const std::vector<unsigned int>& indicies,
							     bool                             exclude) EddyTry
{
  if (!IsPopulated()) throw EddyException("fmriPredictor::Predict: Not yet fully populated");
  if (!IsValid()) throw EddyException("fmriPredictor::Predict: Not yet ready for predictions");
  std::vector<NEWIMAGE::volume<float> > pi(indicies.size());
  std::vector<arma::rowvec> pvecs(indicies.size());
  for (unsigned int i=0; i<indicies.size(); i++) pvecs[i] = _Kmats[_glist[indicies[i]]._sess]->PredVec(_glist[indicies[i]]._sindx,exclude);
  #ifdef COMPILE_GPU
  predict_images_gpu(indicies,exclude,pvecs,pi);
  #else
  predict_images_cpu(indicies,exclude,pvecs,pi);
  #endif
  return(pi);
} EddyCatch

NEWIMAGE::volume<float> fmriPredictor::InputData(unsigned int indx) const EddyTry
{
  if (!IsPopulated()) throw EddyException("fmriPredictor::InputData: Not yet fully populated");
  if (indx >= _glist.size()) throw EddyException("DiffusionGP::InputData: indx out of range");
  return(*(_slist[_glist[indx]._sess].SPtr(_glist[indx]._sindx)) + *(_mptrs[_glist[indx]._sess]));
} EddyCatch

std::vector<NEWIMAGE::volume<float> > fmriPredictor::InputData(const std::vector<unsigned int>& indx) const EddyTry
{
  if (!IsPopulated()) throw EddyException("fmriPredictor::InputData: Not yet fully populated");
  for (unsigned int i=0; i<indx.size(); i++) if (indx[i] >= _glist.size()) throw EddyException("fmriPredictor::InputData: indx out of range");
  std::vector<NEWIMAGE::volume<float> > rval(indx.size());
  for (unsigned int i=0; i<indx.size(); i++) rval[i] = *(_slist[_glist[indx[i]]._sess].SPtr(_glist[indx[i]]._sindx)) + *(_mptrs[_glist[indx[i]]._sess]);
  return(rval);
} EddyCatch

double fmriPredictor::PredictionVariance(unsigned int indx,
					 bool         exclude) EddyTry
{
  if (!IsPopulated()) throw EddyException("fmriPredictor::PredictionVariance:const: Not yet fully populated");
  if (!IsValid()) throw EddyException("fmriPredictor::PredictionVariance:const: Not yet ready for predictions");
  double pv = _Kmats[_glist[indx]._sess]->PredVar(_glist[indx]._sindx,exclude);
  return(pv);
} EddyCatch

double fmriPredictor::ErrorVariance(unsigned int indx) const EddyTry
{
  if (!IsPopulated()) throw EddyException("fmriPredictor::ErrorVariance:const: Not yet fully populated");
  if (!IsValid()) throw EddyException("fmriPredictor::ErrorVariance:const: Not yet ready for predictions");
  double ev = _Kmats[_glist[indx]._sess]->ErrVar(_glist[indx]._sindx);
  return(ev);
} EddyCatch

void fmriPredictor::SetNoOfScans(unsigned int n) EddyTry
{
  if (n == _glist.size()) return; // No change
  else if (n > _glist.size()) {   // If increasing size
    std::lock_guard<std::mutex>  lg(_set_mut);
    _glist.resize(n); // New elements populated according to default constructor
    _lak = false;
    for (unsigned int i; i<_slist.size(); i++) _Kmats[i]->Reset();
  }
  else { // Decreasing size not allowed
    throw EddyException("fmriPredictor::SetNoOfScans: Decreasing size not allowed");
  }
  return;
} EddyCatch

void fmriPredictor::SetScan(const NEWIMAGE::volume<float>& scan, 
			    const DiffPara&                dp,
			    unsigned int                   indx,
			    unsigned int                   sess) EddyTry
{
  std::lock_guard<std::mutex> lg(_set_mut);
  // First just sanity checks
  if (indx >= _glist.size()) throw EddyException("fmriPredictor::SetScan: Invalid image index"); 
  if (_tr < 0.0) _tr = dp.TR();
  else if (std::abs(_tr - dp.TR()) > 1e-6) throw EddyException("fmriPredictor::SetScan: You cannot mix scans with different repetition times"); 
  if (_glist.size() && !NEWIMAGE::samesize(*_slist[_glist[0]._sess].SPtr(0),scan)) throw EddyException("fmriPredictor::SetScan: Wrong image dimension");
  if (_glist[indx]._sess >= 0 && _glist[indx]._sess != sess) throw EddyException("fmriPredictor::SetScan: You cannot change session of a scan");

  if (_glist[indx]._sess >= 0 && _slist[_glist[indx]._sess].Gndx(_glist[indx]._sindx) != static_cast<int>(indx)) throw EddyException("fmriPredictor::SetScan: Lists are inconsistent");
  // Next we do the job
  if (_glist[indx]._sess >= 0) { // If the same index has already been loaded before
    _slist[_glist[indx]._sess].SPtr(_glist[indx]._sindx) = std::make_shared<NEWIMAGE::volume<float> >(scan);
  }
  else { // If this is the first time this index is loaded
    _glist[indx]._sess = sess;
    _glist[indx]._sindx = _slist[sess].Size();
    _slist[sess].PushBack(scan,indx);
  }
  _lak = false;
} EddyCatch

void fmriPredictor::EvaluateModel(const NEWIMAGE::volume<float>& mask, float fwhm, bool verbose) EddyTry
{
  // The first thing we want to do is to "clean" up the lists.
  if (!lists_are_kosher()) throw EddyException("fmriPredictor::lists_are_kosher: Lists are inconsistent");
  // Next make one K-matrix per session
  _Kmats.resize(_slist.size());
  for (unsigned int i=1; i<_slist.size(); i++) {
    _Kmats[i] = _Kmats[0]->Clone();
  }
  // Populate K-matrices with distances. Note that we have shoe-horned it into a "diffusion syntax"
  for (unsigned int i=0; i<_slist.size(); i++) {
    std::vector<DiffPara> dpars(_slist[i].Size(),DiffPara(-100,_tr));
    _Kmats[i]->SetDiffusionPar(dpars);
  }
  mean_correct(); // Mean correct (on a per session basis)
  // Next we need to select data for the estimation of hyper-parameters.
  // If all sessions have the same number of scans we can mix-and-match data
  // from different sessions. If not we pick a session at random, but with 
  // probability weighted by the number of scans in the session.
  if (same_no_of_scans_in_all_sessions()) { // Mix-and-match
    DataSelector ds = DataSelector(_slist[0].SPtr_list(),mask,(_hpe->GetNVox()/_slist.size())+1,FourthDimension(0),fwhm,_hpe->RndInit());
    for (unsigned int i=1; i<_slist.size(); i++) {
      ds.ConcatToMe(DataSelector(_slist[i].SPtr_list(),mask,(_hpe->GetNVox()/_slist.size())+1,FourthDimension(i),fwhm,_hpe->RndInit()));
    }
    _hpe->SetData(ds.GetData());
    _hpe->Estimate(_Kmats[0],verbose);
    for (unsigned int i=0; i<_slist.size(); i++) {
      _Kmats[i]->SetHyperPar(_hpe->GetHyperParameters());
      _Kmats[i]->CalculateInvK();
    }    
  }
  else { // Pick random session
    // Draw random number 0--no_of_scans-1
    int seed = (_hpe->RndInit()) ? _hpe->RndInit() : static_cast<int>(time(NULL));
    std::mt19937 gen(seed);
    std::uniform_int_distribution<> distr(0,static_cast<int>(no_of_scans())-1);
    int rndnr = distr(gen);
    // Determine which session this corresponds to
    int cumscans = 0;
    unsigned int si;
    for (si=0; si<_slist.size(); si++) {
      cumscans += _slist[si].Size();
      if (cumscans >= rndnr) break;
    }
    DataSelector ds = DataSelector(_slist[si].SPtr_list(),mask,_hpe->GetNVox(),FourthDimension(si),fwhm,_hpe->RndInit()); 
    _hpe->SetData(ds.GetData());
    _hpe->Estimate(_Kmats[si],verbose);
    for (unsigned int i=0; i<_slist.size(); i++) {
      _Kmats[i]->SetHyperPar(_hpe->GetHyperParameters());
      _Kmats[i]->CalculateInvK();
    }
  }
  return;
} EddyCatch

void fmriPredictor::WriteImageData(const std::string& fname) const EddyTry
{
  char ofname[256];
  if (!IsPopulated() || !_lak) throw EddyException("fmriPredictor::WriteImageData: Not yet fully populated");
  // For practical reasons the volumes are written individually
  for (unsigned int i=0; i<_glist.size(); i++) {
    sprintf(ofname,"%s_%03d_%02d_%03d",fname.c_str(),i,_glist[i]._sess,_glist[i]._sindx);
    NEWIMAGE::write_volume(*(_slist[_glist[i]._sess].SPtr(_glist[i]._sindx)),ofname);
  }
  for (unsigned int i=0; i<_mptrs.size(); i++) {
    sprintf(ofname,"%s_mean_%02d",fname.c_str(),i);
    NEWIMAGE::write_volume(*(_mptrs[i]),ofname);
  }
} EddyCatch

void fmriPredictor::WriteMetaData(const std::string& fname) const EddyTry
{
  if (!IsPopulated() || !_lak) throw EddyException("fmriPredictor::WriteMetaData: Not yet fully populated");
  char ofname[256];
  for (unsigned int i=0; i<_slist.size(); i++) {
    sprintf(ofname,"%s_%02d",fname.c_str(),i);
    _Kmats[i]->Write(ofname);
  }
} EddyCatch

void fmriPredictor::mean_correct() EddyTry
{
  NEWIMAGE::volume<float> mean = *_slist[_glist[0]._sess].SPtr(_glist[0]._sindx);
  for (unsigned int li=0; li<_slist.size(); li++) {
    mean = *_slist[li].SPtr(0);
    for (unsigned int i=1; i<_slist[li].Size(); i++) mean += *_slist[li].SPtr(i);
    mean /= static_cast<float>(_slist[li].Size());
    for (unsigned int i=0; i<_slist[li].Size(); i++) *_slist[li].SPtr(i) -= mean;
  }
} EddyCatch

bool fmriPredictor::is_populated() const EddyTry
{
  for (unsigned int i=0; i<_glist.size(); i++) if (_glist[i]._sess < 0) return(false);
  return(true);
} EddyCatch

bool fmriPredictor::same_no_of_scans_in_all_sessions() const EddyTry
{
  for (unsigned int i=1; i<_slist.size(); i++) if (_slist[i].Size() != _slist[0].Size()) return(false);
  return(true);
} EddyCatch

/****************************************************************//**
*
* This ensures that the entries in the _slist are sorted in ascending 
* order of "global index". But when reorganising the _slist we also 
* need to make sure that the entries in the _glist still points to 
* the right _slist entries.
* 
********************************************************************/
bool fmriPredictor::lists_are_kosher() EddyTry
{
  if (!_lak) {
    // First sort the entries in the _slists with the _gindx as key
    for (unsigned int li=0; li<_slist.size(); li++) _slist[li].SortByGndx();
    // Then make sure that _glist and _slist are consistent
    for (unsigned int li=0; li<_slist.size(); li++) {
      for (unsigned int i=0; i<_slist[li].Size(); i++) {
	if (_glist[_slist[li].Gndx(i)]._sess != li) return(false); 
	_glist[_slist[li].Gndx(i)]._sindx = i;
      }
    }
    // Then do a little sanity check of _glist
    for (unsigned int i=0; i<_glist.size(); i++) {
      if (_glist[i]._sess >= _slist.size() || _glist[i]._sindx >= _slist[_glist[i]._sess].Size()) return(false);
    }
    // And finally check that _glist don't have duplicates
    if (glist_has_duplicates()) return(false);
  }
  return(true);
} EddyCatch

bool fmriPredictor::glist_has_duplicates() const EddyTry
{
  for (unsigned int i=0; i<_glist.size()-1; i++) {
    for (unsigned int j=i+1; j<_glist.size(); j++) {
      if (_glist[i]._sess == _glist[j]._sess && _glist[i]._sindx == _glist[j]._sindx) return(true);
    }
  }
  return(false);
} EddyCatch

void fmriPredictor::predict_image_cpu(// Input
				      unsigned int             indx,
				      bool                     exclude,
				      const arma::rowvec&      pv,
				      // Output
				      NEWIMAGE::volume<float>& pi) const EddyTry
{
  unsigned int ys = (exclude) ? _slist[_glist[indx]._sess].Size()-1 : _slist[_glist[indx]._sess].Size();
  arma::colvec y(ys);
  pi = *_mptrs[_glist[indx]._sess];
  for (int k=0; k<pi.zsize(); k++) {
    for (int j=0; j<pi.ysize(); j++) {
      for (int i=0; i<pi.xsize(); i++) {
	if (get_y(i,j,k,indx,exclude,y)) pi(i,j,k) += static_cast<float>(arma::as_scalar(pv*y));
	else pi(i,j,k) = 0.0;
      }
    }
  }
} EddyCatch

void fmriPredictor::predict_images_cpu(// Input
				       const std::vector<unsigned int>&       indicies,
				       bool                                   exclude,
				       const std::vector<arma::rowvec>&       pvecs,
				       // Output
				       std::vector<NEWIMAGE::volume<float> >& pi) const EddyTry
{
  if (indicies.size() != pvecs.size() || indicies.size() != pi.size()) {
    throw EDDY::EddyException("fmriPredictor::predict_images_cpu: mismatch among indicies, pvecs and pi");
  }
  for (unsigned int i=0; i<indicies.size(); i++) predict_image_cpu(indicies[i],exclude,pvecs[i],pi[i]);
  return;
} EddyCatch

bool fmriPredictor::get_y(// Input
			  unsigned int i, unsigned int j, unsigned int k, unsigned int indx, bool exclude,
			  // Output
			  arma::colvec&  y) const EddyTry
{
  const std::vector<std::shared_ptr<NEWIMAGE::volume<float> > >& sptrl = _slist[_glist[indx]._sess].SPtr_list();
  unsigned int sindx = _glist[indx]._sindx;
  for (unsigned int t=0, tt=0; t<sptrl.size(); t++) {
    if (!exclude || t!=sindx) {
      if (!(*sptrl[t])(i,j,k)) return(false);
      else y(tt++) = (*sptrl[t])(i,j,k);
    }
  }
  return(true);
} EddyCatch

void fmriPredictor::ptr_index_list::SortByGndx() EddyTry
{
  std::vector<int> indicies(this->Size());
  std::iota(indicies.begin(),indicies.end(),0);
  std::sort(indicies.begin(),indicies.end(),
	    [this](int a, int b){ return(this->Gndx(a) < this->Gndx(b)); });
  std::vector<std::shared_ptr<NEWIMAGE::volume<float> > > sptr_lst(this->Size());
  std::vector<int> gndx_lst(this->Size());
  for (unsigned int i=0; i<this->Size(); i++) {
    sptr_lst[i] = this->_sptr_lst[indicies[i]];
    gndx_lst[i] = this->_gndx_lst[indicies[i]];
  }
  this->_sptr_lst = sptr_lst;
  this->_gndx_lst = gndx_lst;
} EddyCatch