|
196 | 196 | {[obj.norm, 'c3'] }, obj.cfg.segment.csf_norm |
197 | 197 | }; |
198 | 198 |
|
199 | | - smooth = {{ obj.smooth, ... |
200 | | - [obj.smooth, obj.unwarp, obj.stc], ... |
201 | | - [obj.smooth, obj.stc, obj.unwarp], ... |
202 | | - [obj.smooth, obj.realign, obj.stc], ... |
203 | | - [obj.smooth, obj.unwarp], ... |
204 | | - [obj.smooth, obj.realign] }, obj.cfg.smooth}; |
205 | | - |
206 | | - smooth_norm = {{[obj.smooth, obj.norm], ... |
207 | | - [obj.smooth, obj.norm, obj.unwarp, obj.stc], ... |
208 | | - [obj.smooth, obj.norm, obj.stc, obj.unwarp], ... |
209 | | - [obj.smooth, obj.norm, obj.realign, obj.stc], ... |
210 | | - [obj.smooth, obj.norm, obj.unwarp], ... |
211 | | - [obj.smooth, obj.norm, obj.realign] }, obj.cfg.smooth_norm}; |
212 | | - |
213 | | - preproc_norm = {{obj.norm, ... |
214 | | - [obj.norm, obj.bias_cor], ... |
215 | | - [obj.norm, obj.stc, obj.unwarp], ... |
216 | | - [obj.norm, obj.unwarp, obj.stc], ... |
217 | | - [obj.norm, obj.realign, obj.stc], ... |
218 | | - [obj.norm, obj.unwarp], ... |
219 | | - [obj.norm, obj.realign] }, obj.cfg.preproc_norm}; |
220 | | - |
221 | | - spec = cat(1, spec, smooth, smooth_norm, preproc_norm); |
| 199 | + spec_smooth = {{ obj.smooth, ... |
| 200 | + [obj.smooth, obj.unwarp, obj.stc], ... |
| 201 | + [obj.smooth, obj.stc, obj.unwarp], ... |
| 202 | + [obj.smooth, obj.realign, obj.stc], ... |
| 203 | + [obj.smooth, obj.unwarp], ... |
| 204 | + [obj.smooth, obj.realign] }, obj.cfg.smooth}; |
| 205 | + |
| 206 | + spec_smooth_norm = {{[obj.smooth, obj.norm], ... |
| 207 | + [obj.smooth, obj.norm, obj.unwarp, obj.stc], ... |
| 208 | + [obj.smooth, obj.norm, obj.stc, obj.unwarp], ... |
| 209 | + [obj.smooth, obj.norm, obj.realign, obj.stc], ... |
| 210 | + [obj.smooth, obj.norm, obj.unwarp], ... |
| 211 | + [obj.smooth, obj.norm, obj.realign] }, obj.cfg.smooth_norm}; |
| 212 | + |
| 213 | + spec_preproc_norm = {{obj.norm, ... |
| 214 | + [obj.norm, obj.bias_cor], ... |
| 215 | + [obj.norm, obj.stc, obj.unwarp], ... |
| 216 | + [obj.norm, obj.unwarp, obj.stc], ... |
| 217 | + [obj.norm, obj.realign, obj.stc], ... |
| 218 | + [obj.norm, obj.unwarp], ... |
| 219 | + [obj.norm, obj.realign] }, obj.cfg.preproc_norm}; |
| 220 | + |
| 221 | + spec = cat(1, spec, spec_smooth, spec_smooth_norm, spec_preproc_norm); |
222 | 222 |
|
223 | 223 | for i_map = 1:size(spec, 1) |
224 | 224 | obj = obj.add_mapping('prefix', spec{i_map, 1}, ... |
|
0 commit comments