forked from fieldtrip/fieldtrip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_appendlayout.m
298 lines (264 loc) · 10 KB
/
ft_appendlayout.m
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
function [combined] = ft_appendlayout(cfg, varargin)
% FT_APPENDLAYOUT concatenates multiple layout descriptions that have been constructed
% separately.
%
% Use as
% combined = ft_appendlayout(cfg, layout1, layout2, ...)
% where the input layouts result from FT_PREPARE_LAYOUT and the configuration
% should contain
% cfg.direction = string, 'horizontal' or 'vertical' (default = 'horizontal')
% cfg.align = string, 'center', 'left', 'right', 'top' or 'bottom' (default = 'center')
% cfg.distance = number, distance between layouts (default is automatic)
% cfg.xscale = number, scaling to apply to input layouts along the horizontal direction (default = 1)
% cfg.yscale = number, scaling to apply to input layouts along the vertical direction (default = 1)
%
% See also FT_PREPARE_LAYOUT, FT_LAYOUTPLOT, FT_APPENDSENS
% Copyright (C) 2019-2020, Robert Oostenveld
%
% 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$
% these are used by the ft_preamble/ft_postamble function and scripts
ft_revision = '$Id$';
ft_nargin = nargin;
ft_nargout = nargout;
% do the general setup of the function
ft_defaults
ft_preamble init
ft_preamble debug
ft_preamble loadvar varargin
ft_preamble provenance varargin
% the ft_abort variable is set to true or false in ft_preamble_init
if ft_abort
return
end
% get the defaults
cfg.direction = ft_getopt(cfg, 'direction', 'horizontal');
cfg.align = ft_getopt(cfg, 'align', 'center');
cfg.distance = ft_getopt(cfg, 'distance', []); % default will be determined further down
cfg.xscale = ft_getopt(cfg, 'xscale', 1);
cfg.yscale = ft_getopt(cfg, 'yscale', 1);
% check if the input data is valid for this function
% and ensure it is up to the latest standards
for i=1:length(varargin)
assert(ft_datatype(varargin{i}, 'layout'), 'incorrect input, should be a layout structure');
end
% ensure these are cell-arrays
for i=1:numel(varargin)
if isempty(varargin{i}.outline)
varargin{i}.outline = {};
end
if isempty(varargin{i}.mask)
varargin{i}.mask = {};
end
end
% apply the scaling
for i=1:numel(varargin)
varargin{i} = scalelayout(varargin{i}, cfg.xscale, cfg.yscale);
end
% remove the COMNT and SCALE
for i=1:numel(varargin)
sel = ismember(varargin{i}.label, {'COMNT', 'SCALE'});
varargin{i}.label = varargin{i}.label(~sel);
varargin{i}.pos = varargin{i}.pos(~sel,:);
varargin{i}.width = varargin{i}.width(~sel);
varargin{i}.height = varargin{i}.height(~sel);
end
% determine the center and size of each layout
for i=1:numel(varargin)
xmin(i) = min(varargin{i}.pos(:,1) - varargin{i}.width/2);
xmax(i) = max(varargin{i}.pos(:,1) + varargin{i}.width/2);
ymin(i) = min(varargin{i}.pos(:,2) - varargin{i}.height/2);
ymax(i) = max(varargin{i}.pos(:,2) + varargin{i}.height/2);
end
xrange = xmax-xmin;
yrange = ymax-ymin;
xcenter = (xmin+xmax)/2;
ycenter = (ymin+ymax)/2;
% extend these with a nan to facilitate the for-loop further down
xrange(end+1) = nan;
yrange(end+1) = nan;
% these are needed to automatically determine the distance
width = varargin{1}.width(:);
for i=2:numel(varargin)
width = cat(1, width, varargin{i}.width(:));
end
height = varargin{1}.height(:);
for i=2:numel(varargin)
height = cat(1, height, varargin{i}.height(:));
end
% set the first target point, it will be updated if we go along
xtarget = 0;
ytarget = 0;
% shift the anchor point of each of the layouts to its target position
switch cfg.direction
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
case 'horizontal'
if isempty(cfg.distance)
% determine the distance between layouts
distance = mean(width);
else
% use the specified distance
distance = cfg.distance;
end
switch cfg.align
case 'center'
for i=1:numel(varargin)
dx = xtarget - xcenter(i);
dy = ytarget - ycenter(i);
varargin{i} = shiftlayout(varargin{i}, dx, dy);
xtarget = xtarget + xrange(i)/2 + xrange(i+1)/2 + distance;
end % for varargin
case 'top'
for i=1:numel(varargin)
dx = xtarget - xcenter(i);
dy = ytarget - ymax(i);
varargin{i} = shiftlayout(varargin{i}, dx, dy);
xtarget = xtarget + xrange(i)/2 + xrange(i+1)/2 + distance;
end % for varargin
case 'bottom'
for i=1:numel(varargin)
dx = xtarget - xcenter(i);
dy = ytarget - ymin(i);
varargin{i} = shiftlayout(varargin{i}, dx, dy);
xtarget = xtarget + xrange(i)/2 + xrange(i+1)/2 + distance;
end % for varargin
otherwise
ft_error('invalid value for cfg.align');
end % switch align
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
case 'vertical'
if isempty(cfg.distance)
% determine the distance between layouts
distance = mean(height);
else
% use the specified distance
distance = cfg.distance;
end
switch cfg.align
case 'center'
for i=1:numel(varargin)
dx = xtarget - xcenter(i);
dy = ytarget - ycenter(i);
varargin{i} = shiftlayout(varargin{i}, dx, dy);
ytarget = ytarget - yrange(i)/2 - yrange(i+1)/2 - distance;
end % for varargin
case 'left'
for i=1:numel(varargin)
dx = xtarget - xmin(i);
dy = ytarget - ycenter(i);
varargin{i} = shiftlayout(varargin{i}, dx, dy);
ytarget = ytarget - yrange(i)/2 - yrange(i+1)/2 - distance;
end % for varargin
case 'right'
for i=1:numel(varargin)
dx = xtarget - xmax(i);
dy = ytarget - ycenter(i);
varargin{i} = shiftlayout(varargin{i}, dx, dy);
ytarget = ytarget - yrange(i)/2 - yrange(i+1)/2 - distance;
end % for varargin
otherwise
ft_error('invalid value for cfg.align');
end % switch align
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
case 'overlapping'
if isempty(cfg.distance)
% determine the distance between layouts
distance = 0;
else
% use the specified distance
distance = cfg.distance;
end
switch cfg.align
case 'center'
for i=1:numel(varargin)
dx = xtarget - xcenter(i);
dy = ytarget - ycenter(i);
varargin{i} = shiftlayout(varargin{i}, dx, dy);
xtarget = xtarget + distance;
end % for varargin
case 'top'
for i=1:numel(varargin)
dx = xtarget - xcenter(i);
dy = ytarget - ymax(i);
varargin{i} = shiftlayout(varargin{i}, dx, dy);
xtarget = xtarget + distance;
end % for varargin
case 'bottom'
for i=1:numel(varargin)
dx = xtarget - xcenter(i);
dy = ytarget - ymin(i);
varargin{i} = shiftlayout(varargin{i}, dx, dy);
xtarget = xtarget + distance;
end % for varargin
otherwise
ft_error('invalid value for cfg.align');
end % switch align
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
otherwise
ft_error('invalid value for cfg.direction');
end % switch direction
% now that all layouts have been shifted, we can combine them
combined = [];
combined.pos = varargin{1}.pos;
combined.label = varargin{1}.label(:);
combined.width = varargin{1}.width(:);
combined.height = varargin{1}.height(:);
combined.outline = varargin{1}.outline(:);
combined.mask = varargin{1}.mask(:);
for i=2:numel(varargin)
combined.pos = cat(1, combined.pos, varargin{i}.pos);
combined.label = cat(1, combined.label, varargin{i}.label(:));
combined.width = cat(1, combined.width, varargin{i}.width(:));
combined.height = cat(1, combined.height, varargin{i}.height(:));
combined.outline = cat(1, combined.outline(:), varargin{i}.outline(:));
combined.mask = cat(1, combined.mask(:), varargin{i}.mask(:));
end
% do the general cleanup and bookkeeping at the end of the function
ft_postamble debug
ft_postamble previous varargin
ft_postamble provenance combined
ft_postamble history combined
ft_postamble savevar combined
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% SUBFUNCTION
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function layout = shiftlayout(layout, dx, dy)
layout.pos(:,1) = layout.pos(:,1) + dx;
layout.pos(:,2) = layout.pos(:,2) + dy;
for i=1:numel(layout.mask)
layout.mask{i}(:,1) = layout.mask{i}(:,1) + dx;
layout.mask{i}(:,2) = layout.mask{i}(:,2) + dy;
end
for i=1:numel(layout.outline)
layout.outline{i}(:,1) = layout.outline{i}(:,1) + dx;
layout.outline{i}(:,2) = layout.outline{i}(:,2) + dy;
end
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% SUBFUNCTION
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function layout = scalelayout(layout, sx, sy)
layout.pos(:,1) = layout.pos(:,1) * sx;
layout.pos(:,2) = layout.pos(:,2) * sy;
for i=1:numel(layout.mask)
layout.mask{i}(:,1) = layout.mask{i}(:,1) * sx;
layout.mask{i}(:,2) = layout.mask{i}(:,2) * sy;
end
for i=1:numel(layout.outline)
layout.outline{i}(:,1) = layout.outline{i}(:,1) * sx;
layout.outline{i}(:,2) = layout.outline{i}(:,2) * sy;
end