-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpop_leadfield.m
More file actions
428 lines (386 loc) · 16.4 KB
/
Copy pathpop_leadfield.m
File metadata and controls
428 lines (386 loc) · 16.4 KB
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
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
% pop_leadfield - compute Leadfield Matrix
%
% Usage:
% EEG = pop_leadfield(EEG, 'key', 'val', ...);
%
% Inputs:
% EEG - EEGLAB dataset
%
% Required inputs:
% 'sourcemodel' - [string] source model file
%
% Optional inputs:
% 'sourcemodel2mni' - [9x float] homogeneous transformation matrix to convert
% sourcemodel to MNI space.
% 'downsample' - 1 downsampling of the source model. Valid only for
% volumetric models.
%
% Output:
% EEG - EEGLAB dataset with field 'dipfit.leadfield' containing the Leadfield matrix.
%
% Author: Arnaud Delorme, UCSD, 2021
%
% Example
% p = fileparts(which('eeglab')); % path
% EEG = pop_leadfield(EEG, 'sourcemodel', fullfile(p, 'functions', 'supportfiles', ...
% 'head_modelColin27_5003_Standard-10-5-Cap339.mat'), 'sourcemodel2mni', ...
% [0 -26.6046230000 -46 0.1234625600 0 -1.5707963000 1000 1000 1000]);
%
% Use pop_roi_act(EEG) to compute activity
% Copyright (C) Arnaud Delorme, arnodelorme@gmail.com
%
% Redistribution and use in source and binary forms, with or without
% modification, are permitted provided that the following conditions are met:
%
% 1. Redistributions of source code must retain the above copyright notice,
% this list of conditions and the following disclaimer.
%
% 2. Redistributions in binary form must reproduce the above copyright notice,
% this list of conditions and the following disclaimer in the documentation
% and/or other materials provided with the distribution.
%
% THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
% AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
% IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
% ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
% LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
% CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
% SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
% INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
% CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
% ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
% THE POSSIBILITY OF SUCH DAMAGE.
% TO DO - Arno
% - Centralize reading head mesh and Atlas (there might be a function in
% Fieldtrip to do that) ft_read_volume ft_read_mesh
% - Make compatible with all Fieldtrip and FSL Atlases
% - Downsampling of Atlas - check bug submitted to Fieldtrip
% - Plot inside(blue) vs outside(red) voxels for source volume
function [EEG,com] = pop_leadfield(EEG, varargin)
if nargin < 1
help pop_leadfield
return
end
if ~exist('dpss', 'file')
error('You need the Signal Processing Toolbox to run this command')
end
% define source models
p = fileparts(which('eeglab.m'));
roi(1).label = 'Surface source model: Colin27 (with Desikan-Kilianny atlas)';
roi(1).file = fullfile( p, 'functions', 'supportfiles', 'head_modelColin27_5003_Standard-10-5-Cap339.mat');
roi(1).align = [0 -24 -45 0 0 -1.5707963 1000 1000 1000];
roi(1).enable = 'off';
roi(1).scale = NaN;
roi(1).atlasliststr = { 'Desikan-Kiliany (68 ROIs)' };
roi(1).atlaslist = { 'Desikan-Kiliany' };
roi(1).atlasind = 1;
p = fileparts(which('pop_dipfit_settings.m'));
roi(2).label = 'Surface source model: Use Brainstorm ICBM152 (with Desikan-Kilianny atlas)';
roi(2).file = fullfile(p, 'tess_cortex_mid_low_2000V.mat');
roi(2).align = [0 -24 -45 0 0 -1.5707963000 1000 1000 1000];
roi(2).enable = 'off';
roi(2).scale = NaN;
[ roi(2).atlasliststr, roi(2).atlaslist] = getatlaslist(roi(2).file);
roi(2).atlasind = 2;
roi(3).label = 'Volumetric source model: LORETA-KEY';
roi(3).file = fullfile(p, 'LORETA-Talairach-BAs.mat');
roi(3).align = [];
roi(3).enable = 'off';
roi(3).scale = NaN;
roi(3).atlasliststr = { 'LORETA-Talairach-BAs (44 x 2 ROIs)' };
roi(3).atlaslist = { 'LORETA-Talairach-BAs' };
roi(3).atlasind = 1;
p = fileparts(which('ft_defaults.m'));
roi(4).label = 'Volumetric source model: AFNI with TTatlas+tlrc atlas (Fieldtrip)';
roi(4).file = fullfile(p, 'template','atlas','afni','TTatlas+tlrc.HEAD');
roi(4).align = [ ];
roi(4).enable = 'off';
roi(4).scale = 4;
roi(4).atlasliststr = { '' };
roi(4).atlaslist = { '' };
roi(4).atlasind = 1;
roi(5).label = 'Custom source model';
roi(5).file = '';
roi(5).align = [];
roi(5).enable = 'on';
roi(5).scale = 1;
roi(5).atlasliststr = { '' };
roi(5).atlaslist = { '' };
roi(5).atlasind = 1;
com = '';
if nargin < 1
if nargout > 0
EEG = roi;
else
help pop_roi_activity;
end
return
end
% special callback for custom source models
if ~isstruct(EEG)
fig = EEG;
userdat = get(fig, 'userdata');
EEG = userdat{5};
if strcmpi(varargin{1}, 'select') % atlas
usrdat = userdat{3}(get(findobj(gcf, 'tag', 'selection3'), 'value'));
strAlign = num2str(usrdat.align);
strAlign = regexprep(strAlign, ' +', ' ');
set(findobj(gcf, 'tag', 'push3') , 'enable', usrdat.enable);
set(findobj(gcf, 'tag', 'strfile3') , 'string', usrdat.file, 'enable', usrdat.enable);
set(findobj(gcf, 'tag', 'transform3'), 'string', strAlign, 'enable', 'on'); % usrdat.enable );
set(findobj(gcf, 'tag', 'atlas') , 'string', usrdat.atlasliststr, 'value', usrdat.atlasind, 'enable', 'on' );
if ~isnan(usrdat.scale)
set(findobj(gcf, 'tag', 'scale') , 'string',int2str(usrdat.scale), 'enable', 'on' );
else
set(findobj(gcf, 'tag', 'scale') , 'string', '1', 'enable', 'off' );
end
userdat{4} = usrdat.scale;
set(gcf, 'userdata', userdat);
elseif strcmpi(varargin{1}, 'load') % atlas
[tmpfilename, tmpfilepath] = uigetfile('*', 'Select a text file');
if tmpfilename(1) ~=0, set(findobj('parent', gcbf, 'tag', 'strfile3'), 'string', fullfile(tmpfilepath,tmpfilename)); end
elseif strcmpi(varargin{1}, 'selectcoreg')
plot3dmeshalign(EEG(1).dipfit.hdmfile, get( findobj(fig, 'tag', 'strfile3'), 'string'), str2num(get( findobj(fig, 'tag', 'transform3'), 'string')));
end
return
end
% use DIPFIT settings?
dipfitOK = false;
if all(cellfun(@(x)isfield(x, 'coordformat'), { EEG.dipfit }))
dipfitOK = strcmpi(EEG(1).dipfit.coordformat, 'MNI');
end
if dipfitOK
for iEEG = 2:length(EEG)
if ~isequal(EEG(iEEG).dipfit.hdmfile, EEG(1).dipfit.hdmfile) || ...
~isequal(EEG(iEEG).dipfit.mrifile, EEG(1).dipfit.mrifile) || ...
~isequal(EEG(iEEG).dipfit.chanfile, EEG(1).dipfit.chanfile) || ...
~isequal(EEG(iEEG).dipfit.coordformat, EEG(1).dipfit.coordformat) || ...
~isequal(EEG(iEEG).dipfit.coord_transform, EEG(1).dipfit.coord_transform)
dipfitOK = false;
end
end
end
if nargin < 2
if ~dipfitOK
warndlg2( strvcat( ...
'You need to set DIPFIT to use the MNI head model not set in one or more datasets.', ...
' You will not be able to compute the Leadfield matrix unless you correct this.', ...
'(use menu item Tools > Locate Dipoles with DIPFIT > Head model and settings).'), 'Use DIPFIT Leadfield matrix');
return
end
cb_select = 'pop_leadfield(gcf, ''select'');';
cb_load = 'pop_leadfield(gcf, ''load'');';
cb_selectcoreg = 'pop_leadfield(gcf, ''selectcoreg'');';
uiToolTip = ['Volumetric atlases often have million of voxels and ' 10 ...
'require to be downsampled to a few thousand voxels' 10 ...
'to be used as source models. This message box does not' 10 ...
'apply to surface atlases.' ];
rowg = [0.1 0.8 0.8 0.2];
% uigeom = { 1 1 rowg rowg 1 rowg rowg [0.1 0.6 0.9 0.3] 1 rowg 1 [0.5 1 0.35 0.5] [0.5 1 0.35 0.5] [0.5 1 0.35 0.5] [1] [0.9 1.2 1] };
uigeom = { 1 1 rowg rowg [0.1 0.8 0.2 0.8] };
uilist = { { 'style' 'text' 'string' 'Choose source model for Leadfield matrix' 'fontweight' 'bold'} ...
{ 'style' 'popupmenu' 'string' { roi.label } 'tag' 'selection3' 'value' 3 'callback' cb_select } ...
{} { 'style' 'text' 'string' 'File name'} { 'style' 'edit' 'string' 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' 'tag' 'strfile3' 'userdata', 'sourcemodel' } { 'style' 'pushbutton' 'string' '...' 'userdata', 'sourcemodel' 'tag' 'push3' 'callback' cb_load } ...
{} { 'style' 'text' 'string' 'Transformation to MNI (if any)' } { 'style' 'edit' 'string' 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' 'tag' 'transform3' 'userdata', 'sourcemodel' } { 'style' 'pushbutton' 'string' '...' 'userdata', 'sourcemodel' 'callback' cb_selectcoreg } ...
{} { 'style' 'text' 'string' 'Downsampling (AFNI only)' 'Tooltip' uiToolTip 'userdata' 'scale'} { 'style' 'edit' 'string' '' 'tag' 'scale' 'enable' 'off' 'userdata' 'scale'} { } ...
};
% {} ...
% { 'style' 'checkbox' 'string' 'Export ROI to EEGLAB (will replace ICA components)' 'tag' 'export' 'value' 0 'enable' 'off'} ...
% {} { 'style' 'text' 'string' 'Autoregressive model order' } { 'style' 'edit' 'string' '20' 'tag' 'morder' } { } ...
% {} { 'style' 'text' 'string' 'Bootstrap if any (n)' } { 'style' 'edit' 'string' '' 'tag' 'naccu' } { } ...
% { 'style' 'checkbox' 'string' 'Compute TRGC' 'tag' 'trgc' 'value' 1 } ...
% { 'style' 'checkbox' 'string' 'Compute cross-spectrum' 'tag' 'crossspec' 'value' 1 } ...
[result,usrdat,~,out] = inputgui('geometry', uigeom, 'uilist', uilist, 'helpcom', 'pophelp(''pop_roi_activity'')', ...
'title', 'Compute ROI activity', 'userdata', {[] [] roi [] EEG}, 'eval', [cb_select 'set(findobj(gcf, ''tag'', ''down''), ''string'', '''');' ]);
if isempty(result), return, end
if isempty(usrdat{3}), usrdat{3} = 1; end
options = {
'sourcemodel' out.strfile3 ...
'sourcemodel2mni' str2num(out.transform3) ...
'downsample' str2num(out.scale) ...
};
else
options = varargin;
end
% process multiple datasets
% -------------------------
if length(EEG) > 1
% in all likelyhood, only need to compute a couple of times if we have
% multiple datasets. Bypass eeg_eval for now
differentLeadfieldIndices = [];
for iEEG = 1:length(EEG)
labels = { EEG(iEEG).chanlocs.labels };
found = false;
for iInd = differentLeadfieldIndices
leadfield = EEG(iInd).dipfit.sourcemodel;
if isequal(leadfield.label, labels)
fprintf('Dataset %d -> found the same leadfield in dataset %d\n', iEEG, iInd)
found = true;
break;
end
end
if found
EEG(iEEG).dipfit.sourcemodel = leadfield;
else
[ EEG(iEEG), com ] = pop_leadfield( EEG(iEEG), options{:} );
differentLeadfieldIndices = [ differentLeadfieldIndices iEEG];
end
end
% check that the dipfit settings are the same
% if nargin < 2
% [ EEG, com ] = eeg_eval( 'pop_leadfield', EEG, 'warning', 'on', 'params', options );
% else
% [ EEG, com ] = eeg_eval( 'pop_leadfield', EEG, 'params', options );
% end
return;
end
% 'export2icamatrix' 'string' {'on', 'off'} 'off';
g = finputcheck(options, { ...
'downsample' 'integer' { } 4; % volume only
'sourcemodel' 'string' { } '';
'sourcemodel2mni' 'real' { } [] }, 'pop_roi_activity');
if ischar(g), error(g); end
% Source model
try
headmodel = load('-mat', EEG.dipfit.hdmfile);
catch
headmodel = EEG.dipfit.hdmfile;
end
EEG.dipfit.coord_transform = EEG.dipfit.coord_transform;
dataPre = eeglab2fieldtrip(EEG, 'preprocessing', 'dipfit'); % does the transformation
ftPath = fileparts(which('ft_defaults'));
% Prepare the liedfield matrix
[~,~,ext] = fileparts(g.sourcemodel);
if strcmpi(ext, '.nii')
atlas = ft_read_atlas(g.sourcemodel);
mri = sum(atlas.tissue(:,:,:,:),4) > 0;
[r,c,v] = ind2sub(size(mri),find(mri));
xyz = [r c v ones(length(r),1)];
xyz = atlas.transform*xyz';
if nargin > 1 && ~isempty(transform)
xyz = traditionaldipfit(transform)*xyz;
end
disp('DOWNSAMPLING NOT IMPLEMENTED FOR THIS TYPE OF ATLAS');
elseif strcmpi(ext, '.head')
[~, sourcemodelOri.pos, ~ ] = load_afni_atlas(g.sourcemodel, EEG.dipfit.hdmfile, g.sourcemodel2mni, g.downsample);
elseif strcmpi(ext, '.mat') % && isfield(g.sourcemodel, 'tri')
sourcemodelOri = transform_move_inward(g.sourcemodel, EEG.dipfit.hdmfile, g.sourcemodel2mni);
end
cfg = [];
if isfield(dataPre, 'elec')
cfg.elec = dataPre.elec;
elseif isfield(dataPre, 'grad')
cfg.grad = dataPre.grad;
end
% cfg.grid = sourcemodelOri; % source points
if isfield(headmodel, 'vol')
cfg.headmodel = headmodel.vol; % volume conduction model
else
cfg.headmodel = headmodel; % volume conduction model
end
cfg.sourcemodel.inside = ones(size(sourcemodelOri.pos,1),1) > 0;
cfg.sourcemodel.pos = sourcemodelOri.pos;
cfg.sourcemodel.unit = 'mm'; % for Monkey brain, might not work for MEG
if isfield(sourcemodelOri, 'tri')
cfg.sourcemodel.tri = sourcemodelOri.tri;
end
cfg.singleshell.batchsize = 5000; % speeds up the computation
cfg.channel = EEG.dipfit.chansel;
EEG.dipfit.sourcemodel = ft_prepare_leadfield(cfg);
EEG.dipfit.sourcemodel.file = g.sourcemodel;
EEG.dipfit.sourcemodel.coordtransform = g.sourcemodel2mni;
% remove vertices not modeled (no longer necessary - makes holes in model)
% indRm = find(sourcemodel.inside == 0);
% rowRm = [];
% for ind = 1:length(indRm)
% sourcemodel.tri(sourcemodel.tri(:,1) == indRm(ind),:) = [];
% sourcemodel.tri(sourcemodel.tri(:,2) == indRm(ind),:) = [];
% sourcemodel.tri(sourcemodel.tri(:,3) == indRm(ind),:) = [];
% sourcemodel.tri(sourcemodel.tri(:) > indRm(ind)) = sourcemodel.tri(sourcemodel.tri(:) > indRm(ind)) - 1;
% end
% sourcemodel.pos(indRm,:) = [];
% sourcemodel.leadfield(indRm) = [];
if nargout > 1
com = sprintf( 'EEG = pop_leadfield(EEG, %s);', vararg2str( options ));
end
% -----------------------------------
% surface only - move vertices inward
% -----------------------------------
function [sourcemodelout, transform] = transform_move_inward(sourcemodel, headmodel, transform)
if ischar(headmodel)
headmodel = load('-mat', headmodel);
if isfield(headmodel, 'vol')
headmodel = headmodel.vol;
headmodel.unit = 'mm';
end
end
if ischar(sourcemodel)
try
sourcemodel = load('-mat', sourcemodel);
catch
error('WARNING: could not open source model file')
end
if isfield(sourcemodel, 'cortex')
sourcemodel = sourcemodel.cortex;
end
else
% Likely a volume atlas
sourcemodelout = sourcemodel;
return
end
if isfield(sourcemodel, 'inside')
pos = sourcemodel.transform * [sourcemodel.pos(logical(sourcemodel.inside),:) ones(sum(sourcemodel.inside),1) ]';
sourcemodel = [];
sourcemodel.pos = pos(1:3,:)';
end
newsourcemodel = [];
if isfield(sourcemodel, 'Vertices') && isfield(sourcemodel, 'Faces')
newsourcemodel.pos = sourcemodel.Vertices;
newsourcemodel.tri = sourcemodel.Faces;
elseif isfield(sourcemodel, 'Vertices')
newsourcemodel.pos = sourcemodel.Vertices;
newsourcemodel.tri = [];
elseif isfield(sourcemodel, 'vertices')
newsourcemodel.pos = sourcemodel.vertices;
newsourcemodel.tri = sourcemodel.faces;
else
newsourcemodel.pos = sourcemodel.pos;
if isfield(newsourcemodel, 'tri')
newsourcemodel.tri = sourcemodel.tri;
else
newsourcemodel.tri = [];
end
end
cfg = [];
pos = [newsourcemodel.pos ones(size(newsourcemodel.pos,1),1) ];
if ~isempty(transform)
pos = traditionaldipfit(transform)*pos';
else
pos = pos';
end
pos(4,:) = [];
cfg.sourcemodel.pos = pos';
cfg.sourcemodel.tri = newsourcemodel.tri;
cfg.sourcemodel.unit = headmodel.unit;
cfg.moveinward = 1;
cfg.headmodel = headmodel;
disp('moving source model inward if necessary');
sourcemodelout = ft_prepare_sourcemodel(cfg);
transform = [];
% plot3dmeshalign(headmodel);
%
% hold on;
% plot3dmeshalign(tmp2, [], [1 0 0])
% -------------------
% get list of atlases
% -------------------
function [atlasstr, atlas] = getatlaslist(fileName)
data = load('-mat', fileName);
atlasstr = {};
atlas = {};
for iAtlas = 1:length(data.Atlas)
if ~isempty(data.Atlas(iAtlas).Scouts) && ~strcmpi(data.Atlas(iAtlas).Name, 'Structures')
atlasstr{end+1} = [data.Atlas(iAtlas).Name ' (' int2str(length(data.Atlas(iAtlas).Scouts)) ' ROIs)' ];
atlas{ end+1} = data.Atlas(iAtlas).Name;
end
end