Skip to content

Commit 84bdf52

Browse files
committedNov 3, 2023
GUI added a branch to select between methods if RMBG
TODO : execution stuff
1 parent 7c94c8c commit 84bdf52

File tree

2 files changed

+58
-3
lines changed

2 files changed

+58
-3
lines changed
 

‎mp2rage_cfg_matlabbatch.m

+57-2
Original file line numberDiff line numberDiff line change
@@ -94,18 +94,72 @@
9494
%--------------------------------------------------------------------------
9595
rmbg_output = mp2rage_matlabbatch_job_output( 'rmbg.output' );
9696

97+
%--------------------------------------------------------------------------
98+
% rmbg_regularisation
99+
%--------------------------------------------------------------------------
100+
rmbg_regularisation = cfg_branch();
101+
rmbg_regularisation.tag = 'regulsarisation';
102+
rmbg_regularisation.name = 'Regulsarisation';
103+
rmbg_regularisation.help = {
104+
'Use a INV1 + INV2 + regularisation factor. The regularisation factor has to be tuned by the user'
105+
'This is the method described in https://github.com/JosePMarques/MP2RAGE-related-scripts '
106+
''
107+
};
108+
rmbg_regularisation.val = {rmbg_INV1 rmbg_INV2 rmbg_UNI rmbg_regularization rmbg_output rmbg_show};
109+
110+
111+
%--------------------------------------------------------------------------
112+
% rmbg_psedomask
113+
%--------------------------------------------------------------------------
114+
rmbg_psedomask = cfg_branch();
115+
rmbg_psedomask.tag = 'psedomask';
116+
rmbg_psedomask.name = 'Pseudo mask';
117+
rmbg_psedomask.help = {
118+
'Use a INV2 as pseudo mask. No user tuning required'
119+
'This is the method described in https:https://github.com/srikash/3dMPRAGEise.git'
120+
''
121+
};
122+
rmbg_psedomask.val = {rmbg_INV2 rmbg_UNI rmbg_output rmbg_show};
123+
124+
%--------------------------------------------------------------------------
125+
% rmbg_method
126+
%--------------------------------------------------------------------------
127+
rmbg_method = cfg_choice();
128+
rmbg_method.tag = 'method';
129+
rmbg_method.name = 'Method :';
130+
rmbg_method.help = {
131+
'1) INV2 pseudo mask'
132+
'----------------'
133+
'Use a INV2 as pseudo mask. No user tuning required'
134+
'This is the method described in https:https://github.com/srikash/3dMPRAGEise.git'
135+
''
136+
'2) Regularistion'
137+
'----------------'
138+
'Use a INV1 + INV2 + regularisation factor. The regularisation factor has to be tuned by the user'
139+
'This is the method described in https://github.com/JosePMarques/MP2RAGE-related-scripts '
140+
''
141+
};
142+
rmbg_method.values = {rmbg_psedomask rmbg_regularisation};
143+
rmbg_method.val = {rmbg_psedomask};
144+
97145
%--------------------------------------------------------------------------
98146
% rmbg
99147
%--------------------------------------------------------------------------
100148
rmbg = cfg_exbranch;
101149
rmbg.tag = 'rmbg';
102150
rmbg.name = 'Remove background';
103151
rmbg.help = {
152+
'Methode 1 :'
153+
'-----------'
154+
'Based on https://github.com/srikash/3dMPRAGEise.git, use INV2 as psedo mask'
155+
''
156+
'Methode 2 :'
157+
'-----------'
104158
'Based on https://github.com/JosePMarques/MP2RAGE-related-scripts, this job will remove backgorund noise from the UNI image.'
105159
'http://journals.plos.org/plosone/article?id=10.1371/journal.pone.0099676'
106160
''
107161
};
108-
rmbg.val = { rmbg_INV1 rmbg_INV2 rmbg_UNI rmbg_regularization rmbg_output rmbg_show };
162+
rmbg.val = { rmbg_method };
109163
rmbg.prog = @prog_rmbg;
110164
rmbg.vout = @vout_rmbg;
111165

@@ -117,7 +171,8 @@
117171
%--------------------------------------------------------------------------
118172
irmbg = rmbg; % Copy it, ...
119173
% ... then change what is necessay
120-
irmbg.name = 'Interactive remove background';
174+
irmbg.val = rmbg_regularisation.val;
175+
irmbg.name = 'Interactive remove background using Regularisation method';
121176
irmbg.tag = 'irmbg';
122177
irmbg.help = {
123178
'With this job, you will be able to select a noise regularization level interactively'

‎mp2rage_matlabbatch_job_output.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@
109109
' out = fullfile(pwd,''outfilename'')'
110110
''
111111
};
112-
output.val = { prefix };
113112
output.values = { prefix dirfile fullpath file };
113+
output.val = { prefix };
114114

115115
end % function

0 commit comments

Comments
 (0)