forked from hMRI-group/hMRI-toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tbx_scfg_hmri_proc.m
68 lines (63 loc) · 3.02 KB
/
tbx_scfg_hmri_proc.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
function proc = tbx_scfg_hmri_proc
% Configuration file for the "histological MRI" (hMRI) toolbox
% Previously named "Voxel-Based Quantification" (VBQ)
% -> Dealing with the processign of the maps
% This include 3 main processing steps:
% - Unified Segmentation (US) -> produces individual tissue maps + warping
% into MNI space
% - DARTEL -> improves the warping into a common space of multiple
% subjects, based on their tissue maps
% - Smoothing -> tissue specific weighted averaging
% These steps are split into 3 sub-modules.
%
% For simplicity, 2 standard pipelines are also set up:
% - US+Smooth -> applies US, warps into MNI, then smoothes
% (weighted-average)
% - US+Dartel+Smooth -> applies US, builds Dartel template and warps into
% MNI, then smoothes (weighted-average)
%_______________________________________________________________________
% Copyright (C) 2017 Cyclotron Research Centre
% Written by Christophe Phillips
% NOTE:
% Only the Dartel tool is made available. Shoot could be added later on if
% needed or wanted...
% ---------------------------------------------------------------------
% proc_modul Preprocess maps -> individual steps
% ---------------------------------------------------------------------
proc_modul = cfg_choice;
proc_modul.tag = 'proc_modul';
proc_modul.name = 'Proc. hMRI -> Individual modules';
proc_modul.help = {
['Parameter maps are spatially processed and brought into standard space',...
'for furhter statistical analysis.']
['This include 3 main processing steps:']
['- Unified Segmentation (US) -> produces individual tissue maps' ...
'+ warping into MNI space']
['- DARTEL -> improves the warping into a common space of multiple' ...
'subjects, based on their tissue maps']
['- Smoothing -> tissue specific weighted averaging']
}'; %#ok<*NBRAK>
proc_modul.values = {tbx_scfg_hmri_proc_US tbx_scfg_hmri_proc_Dartel tbx_scfg_hmri_proc_smooth};
% ---------------------------------------------------------------------
% proc Preprocess maps
% ---------------------------------------------------------------------
proc = cfg_choice;
proc.tag = 'proc';
proc.name = 'Process hMRI maps';
proc.help = {
['Parameter maps are spatially processed and brought into standard space',...
'for furhter statistical analysis.']
['This include 3 main processing steps:']
['- Unified Segmentation (US) -> produces individual tissue maps' ...
'+ warping into MNI space']
['- DARTEL -> improves the warping into a common space of multiple' ...
'subjects, based on their tissue maps']
['- Smoothing -> tissue specific weighted averaging']
[' ']
['For simplicity, 2 standard pipelines are also set up:']
['- US+Smooth -> applies US, warps into MNI, then smoothes (weighted-average)']
['US+Dartel+Smooth -> applies US, builds Dartel template and warps' ...
'into MNI, then smoothes (weighted-average)']
}'; %#ok<*NBRAK>
proc.values = {tbx_scfg_hmri_proc_pipeline proc_modul};
end