Skip to content

Commit

Permalink
Wrong handling in file names
Browse files Browse the repository at this point in the history
MT files were used for every contrast (MT,PD,T1)
  • Loading branch information
EvelyneBalteau committed May 9, 2017
1 parent daecd42 commit a2efb64
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions hmri_create_RFsens.m
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@
% either acquired once for the whole protocol, or once per contrast (MT,
% PD, T1):
MT_sensmaps = rfsens_params.input.MT.sensimages.fnames;
PD_sensmaps = rfsens_params.input.MT.sensimages.fnames;
T1_sensmaps = rfsens_params.input.MT.sensimages.fnames;
PD_sensmaps = rfsens_params.input.PD.sensimages.fnames;
T1_sensmaps = rfsens_params.input.T1.sensimages.fnames;

% Input MTw, PDw, T1w multiecho images:
MT_structurals = rfsens_params.input.MT.structurals.fnames;
PD_structurals = rfsens_params.input.MT.structurals.fnames;
T1_structurals = rfsens_params.input.MT.structurals.fnames;
PD_structurals = rfsens_params.input.PD.structurals.fnames;
T1_structurals = rfsens_params.input.T1.structurals.fnames;

%==========================================================================
% Coregistering the images: each sensmap onto the corresponding structural
Expand Down

0 comments on commit a2efb64

Please sign in to comment.