|
94 | 94 | %--------------------------------------------------------------------------
|
95 | 95 | rmbg_output = mp2rage_matlabbatch_job_output( 'rmbg.output' );
|
96 | 96 |
|
| 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 | + |
97 | 145 | %--------------------------------------------------------------------------
|
98 | 146 | % rmbg
|
99 | 147 | %--------------------------------------------------------------------------
|
100 | 148 | rmbg = cfg_exbranch;
|
101 | 149 | rmbg.tag = 'rmbg';
|
102 | 150 | rmbg.name = 'Remove background';
|
103 | 151 | 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 | + '-----------' |
104 | 158 | 'Based on https://github.com/JosePMarques/MP2RAGE-related-scripts, this job will remove backgorund noise from the UNI image.'
|
105 | 159 | 'http://journals.plos.org/plosone/article?id=10.1371/journal.pone.0099676'
|
106 | 160 | ''
|
107 | 161 | };
|
108 |
| -rmbg.val = { rmbg_INV1 rmbg_INV2 rmbg_UNI rmbg_regularization rmbg_output rmbg_show }; |
| 162 | +rmbg.val = { rmbg_method }; |
109 | 163 | rmbg.prog = @prog_rmbg;
|
110 | 164 | rmbg.vout = @vout_rmbg;
|
111 | 165 |
|
|
117 | 171 | %--------------------------------------------------------------------------
|
118 | 172 | irmbg = rmbg; % Copy it, ...
|
119 | 173 | % ... 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'; |
121 | 176 | irmbg.tag = 'irmbg';
|
122 | 177 | irmbg.help = {
|
123 | 178 | 'With this job, you will be able to select a noise regularization level interactively'
|
|
0 commit comments