-
Notifications
You must be signed in to change notification settings - Fork 768
Expand file tree
/
Copy pathft_plot_slice.m
More file actions
750 lines (674 loc) · 28.4 KB
/
Copy pathft_plot_slice.m
File metadata and controls
750 lines (674 loc) · 28.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
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
function [surfhandle, T2] = ft_plot_slice(dat, varargin)
% FT_PLOT_SLICE plots a single slice that cuts through a 3-D volume and interpolates
% the data if needed.
%
% Use as
% ft_plot_slice(dat, ...)
% or
% ft_plot_slice(dat, mask, ...)
% where dat and mask are equal-sized 3-D arrays.
%
% Additional options should be specified in key-value pairs and can be
% 'transform' = 4x4 homogeneous transformation matrix specifying the mapping from
% voxel coordinates to the coordinate system in which the data are plotted.
% 'location' = 1x3 vector specifying a point on the plane which will be plotted
% the coordinates are expressed in the coordinate system in which the
% data will be plotted. location defines the origin of the plane
% 'orientation' = 1x3 vector specifying the direction orthogonal through the plane
% which will be plotted (default = [0 0 1])
% 'unit' = string, can be 'm', 'cm' or 'mm' (default is automatic)
% 'coordsys' = string, assume the data to be in the specified coordinate system (default = 'unknown')
% 'resolution' = number (default = 1 mm)
% 'datmask' = 3D-matrix with the same size as the data matrix, serving as opacitymap
% If the second input argument to the function contains a matrix, this
% will be used as the mask
% 'maskstyle' = string, 'opacity' or 'colormix', defines the rendering
% 'background' = needed when maskstyle is 'colormix', 3D-matrix with
% the same size as the data matrix, serving as
% grayscale image that provides the background
% 'opacitylim' = 1x2 vector specifying the limits for opacity masking
% 'interpmethod' = string specifying the method for the interpolation, see INTERPN (default = 'nearest')
% 'colormap' = string, see COLORMAP
% 'clim' = 1x2 vector specifying the min and max for the colorscale
% 'facealpha' = transparency when no mask is specified, between 0 and 1 (default = 1)
% 'tag' = string, the tag assigned to the plotted elements (default = '')
%
% You can plot the slices from the volume together with an intersection of the slices
% with a triangulated surface mesh (e.g. a cortical sheet) using
% 'intersectmesh' = triangulated mesh, see FT_PREPARE_MESH
% 'intersectcolor' = string, color specification
% 'intersectlinestyle' = string, line specification
% 'intersectlinewidth' = number
%
% See also FT_PLOT_ORTHO, FT_PLOT_MONTAGE, FT_SOURCEPLOT
% Undocumented options
% 'plotmarker' = Nx3 matrix with points to be plotted as markers, e.g. dipole positions
% 'markersize'
% 'markercolor'
% Copyrights (C) 2010-2014, Jan-Mathijs Schoffelen
% Copyrights (C) 2014-2022, Robert Oostenveld and Jan-Mathijs Schoffelen
%
% This file is part of FieldTrip, see http://www.fieldtriptoolbox.org
% for the documentation and details.
%
% FieldTrip is free software: you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation, either version 3 of the License, or
% (at your option) any later version.
%
% FieldTrip is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with FieldTrip. If not, see <http://www.gnu.org/licenses/>.
%
% $Id$
persistent dim X Y Z
if isstruct(dat) && isfield(dat, 'anatomy') && isfield(dat, 'transform')
% the input is an MRI structure, call this function recursively
varargin = ft_setopt(varargin, 'transform', dat.transform);
if isfield(dat, 'coordsys')
varargin = ft_setopt(varargin, 'coordsys', dat.coordsys);
end
if isfield(dat, 'unit')
varargin = ft_setopt(varargin, 'unit', dat.unit);
end
dat = dat.anatomy;
[surfhandle, T2] = ft_plot_slice(dat, varargin{:});
return
end
% the data can have up to 5 dimensions, including time and/or frequency
% the size function in MATLAB 2022b can take multiple input arguments, but not in 2018b
datsize = [size(dat, 1) size(dat, 2) size(dat, 3) size(dat, 4) size(dat, 5)];
if isequal(dim, datsize(1:3))
% reuse the persistent variables to speed up subsequent calls with the same input
else
% construct the persistent variables
dim = datsize(1:3);
[X, Y, Z] = ndgrid(1:dim(1), 1:dim(2), 1:dim(3));
end
if any(dim==1)
ft_error('it is not possible to plot a volume that consists of a single slice');
end
% parse first input argument(s), it is either
% (dat, varargin)
% (dat, msk, varargin)
% (dat, [], varargin)
if numel(varargin)>0 && (isempty(varargin{1}) || isnumeric(varargin{1}) || islogical(varargin{1}))
msk = varargin{1};
varargin = varargin(2:end);
end
% get the optional input arguments
transform = ft_getopt(varargin, 'transform', eye(4));
loc = ft_getopt(varargin, 'location');
ori = ft_getopt(varargin, 'orientation', [0 0 1]);
coordsys = ft_getopt(varargin, 'coordsys');
unit = ft_getopt(varargin, 'unit'); % the default will be determined further down
resolution = ft_getopt(varargin, 'resolution'); % the default depends on the units and will be determined further down
datmask = ft_getopt(varargin, 'datmask');
maskstyle = ft_getopt(varargin, 'maskstyle', 'opacity');
background = ft_getopt(varargin, 'background');
opacitylim = ft_getopt(varargin, 'opacitylim');
interpmethod = ft_getopt(varargin, 'interpmethod', 'nearest');
cmap = ft_getopt(varargin, 'colormap');
clim = ft_getopt(varargin, 'clim');
doscale = ft_getopt(varargin, 'doscale', true); % only scale when necessary (time consuming), i.e. when plotting as grayscale image & when the values are not between 0 and 1
surfhandle = ft_getopt(varargin, 'surfhandle', []);
patchhandle = ft_getopt(varargin, 'patchhandle', []);
tag = ft_getopt(varargin, 'tag', ''); % this is used to keep the thee intersecting slices or subplots apart
mesh = ft_getopt(varargin, 'intersectmesh');
intersectcolor = ft_getopt(varargin, 'intersectcolor', 'yrgbmyrgbm');
intersectlinewidth = ft_getopt(varargin, 'intersectlinewidth', 2);
intersectlinestyle = ft_getopt(varargin, 'intersectlinestyle');
plotmarker = ft_getopt(varargin, 'plotmarker');
markersize = ft_getopt(varargin, 'markersize', 'auto');
markercolor = ft_getopt(varargin, 'markercolor', 'w');
facealpha = ft_getopt(varargin, 'facealpha', 1); % only applies when no mask is specified
% convert from yes/no/true/false/0/1 into a proper boolean
doscale = istrue(doscale);
if ~isa(dat, 'double')
dat = cast(dat, 'double');
end
if exist('msk', 'var') && isempty(datmask)
ft_warning('using the second input argument as mask rather than the one from the varargin list');
datmask = msk; clear msk;
end
% normalise the orientation vector to one
ori = ori./sqrt(sum(ori.^2));
% set the default location
if isempty(loc) && (isempty(transform) || isequal(transform, eye(4)))
loc = (dim+1)./2;
elseif isempty(loc)
loc = [0 0 0];
end
% shift the location to be along the orientation vector
loc = ori*dot(loc,ori);
% the mesh should be a cell-array
if isstruct(mesh)
tmp = mesh;
mesh = cell(size(tmp));
for i=1:numel(tmp)
mesh{i} = tmp(i);
end
elseif isempty(mesh)
mesh = {};
end
% replace pnt by pos
for k = 1:numel(mesh)
mesh{k} = fixpos(mesh{k});
end
% the mesh should be a structure with pos and either tri/tet/hex
for k = 1:numel(mesh)
if ~isfield(mesh{k}, 'pos')
mesh{k}.pos = [];
end
if ~isfield(mesh{k}, 'tri') && ~isfield(mesh{k}, 'tet') && ~isfield(mesh{k}, 'hex')
mesh{k}.tri = [];
end
end
domask = ~isempty(datmask);
if domask
% check whether the mask is ok
if ~isequal(size(dat), size(datmask)) && ~isequal(cmap, 'rgb')
% the exception is when the functional data is to be interpreted as rgb
ft_error('the mask data should have the same dimensions as the functional data');
end
end
dobackground = ~isempty(background);
if dobackground
% check whether the background is ok
if ~isequal(size(dat), size(background))
error('the background data should have the same dimensions as the functional data');
end
end
% determine the voxel center
% voxel_center_vc = [X(:) Y(:) Z(:)];
% voxel_center_hc = ft_warp_apply(transform, voxel_center_vc);
% determine the edges, i.e. the corner points of each voxel
% [Xe, Ye, Ze] = ndgrid(0:dim(1), 0:dim(2), 0:dim(3));
% Xe = Xe+0.5;
% Ye = Ye+0.5;
% Ze = Ze+0.5;
% voxel_edge_vc = [Xe(:) Ye(:) Ze(:)];
% voxel_edge_hc = ft_warp_apply(transform, voxel_edge_vc);
% determine the corner points of the box that encompasses the whole data
% extend the box with half a voxel in all directions to get the outer edge
corner_vc = [
0.5 0.5 0.5
0.5+dim(1) 0.5 0.5
0.5+dim(1) 0.5+dim(2) 0.5
0.5 0.5+dim(2) 0.5
0.5 0.5 0.5+dim(3)
0.5+dim(1) 0.5 0.5+dim(3)
0.5+dim(1) 0.5+dim(2) 0.5+dim(3)
0.5 0.5+dim(2) 0.5+dim(3)
];
corner_hc = ft_warp_apply(transform, corner_vc);
if isempty(unit)
if ~isequal(transform, eye(4))
% estimate the geometrical units we are dealing with
unit = ft_estimate_units(norm(range(corner_hc)));
else
% units are in voxels, these are assumed to be close to mm
unit = 'mm';
end
end
if isempty(resolution)
% the default resolution is 1 mm
resolution = ft_scalingfactor('mm', unit);
end
% determine whether interpolation is needed
dointerp = false;
dointerp = dointerp || sum(sum(transform-eye(4)))~=0;
dointerp = dointerp || ~all(round(loc)==loc);
dointerp = dointerp || sum(ori)~=1;
dointerp = dointerp || ~(resolution==round(resolution));
% determine the caller function and toggle dointerp to true, if ft_plot_slice has been called from ft_plot_montage
% this is necessary for the correct allocation of the persistent variables
st = dbstack;
if ~dointerp && numel(st)>1 && strcmp(st(2).name, 'ft_plot_montage'), dointerp = true; end
% define 'x' and 'y' axis in projection plane, the definition of x and y is more or less arbitrary
[x, y] = projplane(ori);
% z = ori;
% project the corner points onto the projection plane
corner_pc = zeros(size(corner_hc));
for i=1:8
corner = corner_hc(i, :) - loc(:)';
corner_pc(i,1) = dot(corner, x);
corner_pc(i,2) = dot(corner, y);
corner_pc(i,3) = 0;
end
% get the transformation matrix from the projection plane to head coordinates
T2 = [x(:) y(:) ori(:) loc(:); 0 0 0 1];
% get the transformation matrix from projection plane to voxel coordinates
T3 = transform\T2;
min_corner_pc = min(corner_pc, [], 1);
max_corner_pc = max(corner_pc, [], 1);
% round the bounding box limits to the nearest mm
switch unit
case 'm'
min_corner_pc = ceil(min_corner_pc*100)/100;
max_corner_pc = floor(max_corner_pc*100)/100;
case 'cm'
min_corner_pc = ceil(min_corner_pc*10)/10;
max_corner_pc = floor(max_corner_pc*10)/10;
case 'mm'
min_corner_pc = ceil(min_corner_pc);
max_corner_pc = floor(max_corner_pc);
end
% determine a grid of points in the projection plane
xplane = min_corner_pc(1):resolution:max_corner_pc(1);
yplane = min_corner_pc(2):resolution:max_corner_pc(2);
zplane = 0;
[Xi, Yi, Zi] = ndgrid(xplane, yplane, zplane);
siz = [size(squeeze(Xi)) size(dat,4)];
interp_center_pc = [Xi(:) Yi(:) Zi(:)];
% interp_center_hc = ft_warp_apply(T2, interp_center_pc);
% get the positions of the points in the projection plane in voxel coordinates
interp_center_vc = ft_warp_apply(T3, interp_center_pc);
Xi = reshape(interp_center_vc(:, 1), siz(1:2));
Yi = reshape(interp_center_vc(:, 2), siz(1:2));
Zi = reshape(interp_center_vc(:, 3), siz(1:2));
% check whether the values in the axes are close enough to integer
tol = nanmean([diff(unique(Xi(:)));diff(unique(Yi(:)))])./100;
isintegerXi = issufficientlyinteger(Xi(:),tol);
isintegerYi = issufficientlyinteger(Yi(:),tol);
isintegerZi = issufficientlyinteger(Zi(:),tol);
% check whether it's possible to select an orthogonal plane
[islineXi, lineXi] = isline(Xi);
[islineYi, lineYi] = isline(Yi);
[islineZi, lineZi] = isline(Zi);
use_interpn = ~isequal(transform, eye(4)) || ~isequal(interpmethod, 'nearest') || ~all([isintegerXi isintegerYi isintegerZi]);
get_slice = ~use_interpn && all([islineXi islineYi islineZi]) && all([isintegerXi isintegerYi isintegerZi]);
if use_interpn
V = interpn(X, Y, Z, dat, Xi, Yi, Zi, interpmethod);
if domask, Vmask = interpn(X, Y, Z, datmask, Xi, Yi, Zi, interpmethod); end
if dobackground, Vback = interpn(X, Y, Z, background, Xi, Yi, Zi, interpmethod); end
elseif get_slice
% something more efficient than an interpolation can be done:
% just select the appropriate plane, and permute to get the orientation
% right in the plots, this has something to do with ndgrid vs meshgrid I think
permutevec = [2 1];
if ndims(dat)>3
permutevec = [permutevec 3:ndims(dat)];
end
if numel(unique(lineXi(:)))==1
lineXi = lineXi(1);
elseif numel(unique(lineYi(:)))==1
lineYi = lineYi(1);
elseif numel(unique(lineZi(:)))==1
lineZi = lineZi(1);
end
V = permute(reshape(dat(lineXi,lineYi,lineZi,:), siz(permutevec(1:ndims(dat)-1))), permutevec);
if domask, Vmask = permute(reshape(datmask(lineXi,lineYi,lineZi,:), siz(permutevec(1:2))), [2 1]); end
if dobackground, Vback = permute(reshape(background(lineXi,lineYi,lineZi,:), siz(permutevec(1:2))), [2 1]); end
else
% use sub2ind in the unlikely case that it's an oblique plane, parallel
% to one of the axes with only integer indices
% this fails for rgb data
V = dat(sub2ind(dim, Xi(:), Yi(:), Zi(:)));
V = reshape(V, siz);
end
if all(isnan(V(:)))
% the projection plane lies completely outside the box spanned by the data
else
% trim the edges of the projection plane
[sel1, sel2] = tight(V(:,:,1));
V = V (sel1,sel2,:);
Xi = Xi(sel1,sel2);
Yi = Yi(sel1,sel2);
Zi = Zi(sel1,sel2);
if domask
Vmask = Vmask(sel1,sel2);
end
if dobackground
Vback = Vback(sel1,sel2);
end
end
if dobackground
% convert the background plane to a grayscale image
bmin = nanmin(background(:));
bmax = nanmax(background(:));
Vback = (Vback-bmin)./(bmax-bmin);
Vback(~isfinite(Vback)) = 0;
Vback = cat(3, Vback, Vback, Vback);
end
interp_center_vc = [Xi(:) Yi(:) Zi(:)]; clear Xi Yi Zi
interp_center_pc = ft_warp_apply(inv(T3), interp_center_vc);
% determine a grid of points in the projection plane
% this reconstruction is needed since the edges may have been trimmed off
xplane = min(interp_center_pc(:, 1)):resolution:max(interp_center_pc(:, 1));
yplane = min(interp_center_pc(:, 2)):resolution:max(interp_center_pc(:, 2));
zplane = 0;
[Xi, Yi, Zi] = ndgrid(xplane, yplane, zplane); % 2D cartesian grid of projection plane in plane voxels
siz = size(squeeze(Xi));
% extend with one voxel along dim 1
Xi = cat(1, Xi, Xi(end,:)+mean(diff(Xi,[],1),1));
Yi = cat(1, Yi, Yi(end,:)+mean(diff(Yi,[],1),1));
Zi = cat(1, Zi, Zi(end,:)+mean(diff(Zi,[],1),1));
% extend with one voxel along dim 2
Xi = cat(2, Xi, Xi(:,end)+mean(diff(Xi,[],2),2));
Yi = cat(2, Yi, Yi(:,end)+mean(diff(Yi,[],2),2));
Zi = cat(2, Zi, Zi(:,end)+mean(diff(Zi,[],2),2));
% shift with half a voxel along dim 1 and 2
Xi = Xi-0.5*resolution;
Yi = Yi-0.5*resolution;
% Zi = Zi; % do not shift along this direction
interp_edge_pc = [Xi(:) Yi(:) Zi(:)]; clear Xi Yi Zi
interp_edge_hc = ft_warp_apply(T2, interp_edge_pc);
if false
% plot all objects in head coordinates
ft_plot_mesh(voxel_center_hc, 'vertexmarker', 'o')
ft_plot_mesh(voxel_edge_hc, 'vertexmarker', '+')
ft_plot_mesh(corner_hc, 'vertexmarker', '*')
ft_plot_mesh(interp_center_hc, 'vertexmarker', 'o', 'vertexcolor', 'r')
ft_plot_mesh(interp_edge_hc, 'vertexmarker', '+', 'vertexcolor', 'r')
axis on
grid on
xlabel('x')
ylabel('y')
zlabel('z')
end
if isempty(cmap)
% treat as gray value: scale and convert to rgb
if doscale
dmin = min(dat(:));
dmax = max(dat(:));
V = (V-dmin)./(dmax-dmin);
clear dmin dmax
end
V(~isfinite(V)) = 0;
% deal with clim for RGB data here, where the purpose is to increase the
% contrast range, rather than shift the average grey value
if ~isempty(clim)
V = (V-clim(1))./clim(2);
V(V>1)=1;
end
% convert into RGB values, e.g. for the plotting of anatomy
V = cat(3, V, V, V);
end
% get positions of the voxels in the interpolation plane in head coordinates
Xh = reshape(interp_edge_hc(:,1), siz+1);
Yh = reshape(interp_edge_hc(:,2), siz+1);
Zh = reshape(interp_edge_hc(:,3), siz+1);
% do the actual plotting of the slice
if ~domask
% no masked slice to be plotted
if isempty(surfhandle)
% create surface object
surfhandle = surface(Xh, Yh, Zh, V);
set(surfhandle, 'linestyle', 'none');
set(surfhandle, 'FaceAlpha', facealpha);
else
% update the colordata in the surface object
set(surfhandle, 'Cdata', V);
set(surfhandle, 'Xdata', Xh);
set(surfhandle, 'Ydata', Yh);
set(surfhandle, 'Zdata', Zh);
set(surfhandle, 'FaceAlpha', facealpha);
end
elseif domask
% what should be done depends on the maskstyle
switch maskstyle
case 'opacity'
if dobackground
ft_warning('specifying maskstyle = ''opacity'' causes the supplied background image not to be used');
end
if isempty(surfhandle)
% create surface object
surfhandle = surface(Xh, Yh, Zh, V);
set(surfhandle, 'linestyle', 'none');
else
% update the colordata in the surface object
set(surfhandle, 'Cdata', V);
set(surfhandle, 'Xdata', Xh);
set(surfhandle, 'Ydata', Yh);
set(surfhandle, 'Zdata', Zh);
end
if islogical(Vmask), Vmask = double(Vmask); end
set(surfhandle, 'FaceColor', 'texture');
set(surfhandle, 'FaceAlpha', 'texturemap'); %flat
set(surfhandle, 'AlphaDataMapping', 'scaled');
set(surfhandle, 'AlphaData', Vmask);
if ~isempty(opacitylim)
alim(opacitylim)
end
case 'colormix'
if isempty(cmap), error('using ''colormix'' as maskstyle requires an explicitly defined colormap'); end
if ischar(cmap), cmap = strrep(cmap, 'default', 'parula'); cmap = ft_colormap(cmap); end
V = bg_rgba2rgb(Vback,V,cmap,clim,Vmask,'rampup',opacitylim);
if isempty(surfhandle)
% create surface object
surfhandle = surface(Xh, Yh, Zh, V);
set(surfhandle, 'linestyle', 'none');
else
% update the colordata in the surface object
set(surfhandle, 'Cdata', V);
set(surfhandle, 'Xdata', Xh);
set(surfhandle, 'Ydata', Yh);
set(surfhandle, 'Zdata', Zh);
end
otherwise
error('unsupported maskstyle');
end
end
if ~isempty(coordsys) && ~strcmp(coordsys, 'unknown')
% convert 'neuromag' to 'ras', etc.
coordsys = generic(coordsys);
% determine the center of each of the 6 faces of the box that encompasses the whole data
% shift all of them inward by about 5%
center_vc = [
dim(1)*0.05 dim(2)*0.50 dim(3)*0.50
dim(1)*0.95 dim(2)*0.50 dim(3)*0.50
dim(1)*0.50 dim(2)*0.05 dim(3)*0.50
dim(1)*0.50 dim(2)*0.95 dim(3)*0.50
dim(1)*0.50 dim(2)*0.50 dim(3)*0.05
dim(1)*0.50 dim(2)*0.50 dim(3)*0.95
];
center_hc = ft_warp_apply(transform, center_vc);
% the order of the center points is arbitrary and does not match coordsys/xyz
% hence we have to determine them for each x/y/z direction
minx = min(center_hc(:,1));
maxx = max(center_hc(:,1));
miny = min(center_hc(:,2));
maxy = max(center_hc(:,2));
minz = min(center_hc(:,3));
maxz = max(center_hc(:,3));
% also compute the midpoints, i.e. the center of the cube itself
midx = mean(center_hc(:,1));
midy = mean(center_hc(:,2));
midz = mean(center_hc(:,3));
if isequal(ori, [1 0 0])
% the slice is perpendicular to the x-axis
delete(findall(gca, 'Tag', ['coordsyslabel_' tag])) % remove the labels from the previous call
text(loc(1), miny, midz, upper(flipletter(coordsys(2))), 'Color', 'y', 'HorizontalAlignment', 'center', 'VerticalAlignment', 'middle', 'Tag', ['coordsyslabel_' tag]);
text(loc(1), maxy, midz, upper( coordsys(2) ), 'Color', 'y', 'HorizontalAlignment', 'center', 'VerticalAlignment', 'middle', 'Tag', ['coordsyslabel_' tag]);
text(loc(1), midy, minz, upper(flipletter(coordsys(3))), 'Color', 'y', 'HorizontalAlignment', 'center', 'VerticalAlignment', 'middle', 'Tag', ['coordsyslabel_' tag]);
text(loc(1), midy, maxz, upper( coordsys(3) ), 'Color', 'y', 'HorizontalAlignment', 'center', 'VerticalAlignment', 'middle', 'Tag', ['coordsyslabel_' tag]);
elseif isequal(ori, [0 1 0])
% the slice is perpendicular to the y-axis
delete(findall(gca, 'Tag', ['coordsyslabel_' tag])) % remove the labels from the previous call
text(minx, loc(2), midz, upper(flipletter(coordsys(1))), 'Color', 'y', 'HorizontalAlignment', 'center', 'VerticalAlignment', 'middle', 'Tag', ['coordsyslabel_' tag]);
text(maxx, loc(2), midz, upper( coordsys(1) ), 'Color', 'y', 'HorizontalAlignment', 'center', 'VerticalAlignment', 'middle', 'Tag', ['coordsyslabel_' tag]);
text(midx, loc(2), minz, upper(flipletter(coordsys(3))), 'Color', 'y', 'HorizontalAlignment', 'center', 'VerticalAlignment', 'middle', 'Tag', ['coordsyslabel_' tag]);
text(midx, loc(2), maxz, upper( coordsys(3) ), 'Color', 'y', 'HorizontalAlignment', 'center', 'VerticalAlignment', 'middle', 'Tag', ['coordsyslabel_' tag]);
elseif isequal(ori, [0 0 1])
% the slice is perpendicular to the z-axis
delete(findall(gca, 'Tag', ['coordsyslabel_' tag])) % remove the labels from the previous call
text(minx, midy, loc(3), upper(flipletter(coordsys(1))), 'Color', 'y', 'HorizontalAlignment', 'center', 'VerticalAlignment', 'middle', 'Tag', ['coordsyslabel_' tag]);
text(maxx, midy, loc(3), upper( coordsys(1) ), 'Color', 'y', 'HorizontalAlignment', 'center', 'VerticalAlignment', 'middle', 'Tag', ['coordsyslabel_' tag]);
text(midx, miny, loc(3), upper(flipletter(coordsys(2))), 'Color', 'y', 'HorizontalAlignment', 'center', 'VerticalAlignment', 'middle', 'Tag', ['coordsyslabel_' tag]);
text(midx, maxy, loc(3), upper( coordsys(2) ), 'Color', 'y', 'HorizontalAlignment', 'center', 'VerticalAlignment', 'middle', 'Tag', ['coordsyslabel_' tag]);
end
end % if coordsys
% plot the intersection with a mesh
if ~isempty(mesh)
if isempty(patchhandle) || length(patchhandle)~=length(mesh)
% try to find the handles of all patches
patchhandle = findall(gca, 'tag', ['intersectmesh_' tag]);
end
if length(patchhandle)~=length(mesh)
% the patch handles do not make sense, start from scratch
delete(findall(gca, 'tag', ['intersectmesh_' tag]))
patchhandle = nan(size(mesh));
end
% determine three points on the plane
inplane = eye(3) - (eye(3) * ori') * ori;
v1 = loc + inplane(1,:);
v2 = loc + inplane(2,:);
v3 = loc + inplane(3,:);
for k = 1:numel(mesh)
if isfield(mesh{k}, 'tri')
[xmesh, ymesh, zmesh] = intersect_plane(mesh{k}.pos, mesh{k}.tri, v1, v2, v3);
elseif isfield(mesh{k}, 'tet')
[xmesh, ymesh, zmesh] = intersect_plane(mesh{k}.pos, mesh{k}.tet, v1, v2, v3);
elseif isfield(mesh{k}, 'hex')
[xmesh, ymesh, zmesh] = intersect_plane(mesh{k}.pos, mesh{k}.hex, v1, v2, v3);
end
% draw each individual line segment of the intersection
if ~isempty(xmesh)
if ~ishandle(patchhandle(k))
patchhandle(k) = patch(xmesh', ymesh', zmesh', nan(1, size(xmesh, 1)));
set(patchhandle(k), 'tag', ['intersectmesh_' tag]);
if ~isempty(intersectcolor), set(patchhandle(k), 'EdgeColor', intersectcolor(k)); end
if ~isempty(intersectlinewidth), set(patchhandle(k), 'LineWidth', intersectlinewidth); end
if ~isempty(intersectlinestyle), set(patchhandle(k), 'LineStyle', intersectlinestyle); end
else
set(patchhandle(k), 'XData', xmesh', 'YData', ymesh', 'ZData', zmesh', 'FaceVertexCdata', nan(size(xmesh,1),1));
end
else
% there was no intersection, construct a patch that is invisible
patchhandle(k) = patch(nan, nan, nan, nan);
set(patchhandle(k), 'tag', ['intersectmesh_' tag]);
if ~isempty(intersectcolor), set(patchhandle(k), 'EdgeColor', intersectcolor(k)); end
if ~isempty(intersectlinewidth), set(patchhandle(k), 'LineWidth', intersectlinewidth); end
if ~isempty(intersectlinestyle), set(patchhandle(k), 'LineStyle', intersectlinestyle); end
end
end
end
if ~isempty(cmap) && ~isequal(cmap, 'rgb') && ~isequal(maskstyle, 'colormix')
ft_colormap(cmap);
if ~isempty(clim)
caxis(clim);
end
end
if ~isempty(plotmarker)
% determine three points on the plane
inplane = eye(3) - (eye(3) * ori') * ori;
v1 = loc + inplane(1,:);
v2 = loc + inplane(2,:);
v3 = loc + inplane(3,:);
pr = nan(size(plotmarker,1), 3);
d = nan(size(plotmarker,1), 1);
for k = 1:size(plotmarker,1)
[pr(k,:), d(k,:)] = ptriprojn(v1, v2, v3, plotmarker(k,:));
end
sel = d<eps*1e8;
if sum(sel)>0
ft_plot_dipole(pr(sel,:), repmat([0;0;1], 1, size(pr,1)), 'length', 0, 'color', markercolor, 'diameter', markersize);
end
end
% update the axes to ensure that the whole volume fits
ax = [min(corner_hc) max(corner_hc)];
axis(ax([1 4 2 5 3 6])); % reorder into [xmin xmax ymin ymaz zmin zmax]
st = dbstack;
if numel(st)>1
% ft_plot_slice has been called from another function, probably ft_plot_ortho
% assume the remainder of the axis settings to be handled there
else
set(gca,'xlim',[min(Xh(:))-0.5*resolution max(Xh(:))+0.5*resolution]);
set(gca,'ylim',[min(Yh(:))-0.5*resolution max(Yh(:))+0.5*resolution]);
set(gca,'zlim',[min(Zh(:))-0.5*resolution max(Zh(:))+0.5*resolution]);
set(gca,'dataaspectratio',[1 1 1]);
% axis equal; % this for some reason does not work robustly when drawing intersections, replaced by the above
axis vis3d
end
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% SUBFUNCTION
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function [x, y] = projplane(z)
[u, s, v] = svd([eye(3) z(:)]);
x = u(:, 2)';
y = u(:, 3)';
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% SUBFUNCTION
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function [sel1, sel2] = tight(V)
% make a selection to cut off the nans at the edges
sel1 = sum(~isfinite(V), 2)<size(V, 2);
sel2 = sum(~isfinite(V), 1)<size(V, 1);
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% SUBFUNCTION
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function bool = issufficientlyinteger(X, tolerance)
%isinteger only checks for integer class, so will always return false with
%double integers
bool = all(abs(X-round(X))<tolerance);
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% SUBFUNCTION
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function [bool, lineX] = isline(X)
%isline returns an array of the values in X are columnwise or rowwise the
%same, otherwise returns false
if isequal(X(ones(1,size(X,1)),:),X)
lineX = X(1,:);
bool = true;
elseif isequal(X(:,ones(1,size(X,2))),X)
lineX = X(:,1)';
bool = true;
else
lineX = [];
bool = false;
end
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% SUBFUNCTION
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function letter = flipletter(letter)
switch letter
case 'a'
letter = 'p';
case 'p'
letter = 'a';
case 'l'
letter = 'r';
case 'r'
letter = 'l';
case 'i'
letter = 's';
case 's'
letter = 'i';
otherwise
ft_error('incorrect letter')
end
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% SUBFUNCTION
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function coordsys = generic(coordsys)
mapping = {
'ctf', 'als'
'bti', 'als'
'4d', 'als'
'yokogawa', 'als'
'eeglab', 'als'
'eeglab-hj', 'als'
'neuromag', 'ras'
'itab', 'ras'
'acpc', 'ras'
'spm', 'ras'
'mni', 'ras'
'fsaverage', 'ras'
'tal', 'ras'
'scanras', 'ras'
'scanlps', 'lps'
'dicom', 'lps'
'paxinos', 'rsp'
};
sel = find(strcmp(mapping(:,1), coordsys));
if length(sel)==1
coordsys = mapping{sel,2};
end
if ~all(ismember(coordsys, 'lrapis'))
ft_error('cannot convert "%s" to a generic coordinate system label', coordsys);
end