-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into docker-github-action
- Loading branch information
Showing
12 changed files
with
818 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
function hmri_denoising_defaults | ||
|
||
%init the global variable which carries the params | ||
global hmri_def; | ||
|
||
%Enter denoising default values as: hmri_def.denoising.(denoising-protocol).(default-value) | ||
|
||
%The default values for lcpca denoising protocol | ||
%all optional parameters turned off | ||
hmri_def.denoising.lcpca_denoise.mag_input = {}; %%required-null initialize here input with GUI | ||
hmri_def.denoising.lcpca_denoise.phase_input = {}; %%optional-null initialize here input with GUI | ||
hmri_def.denoising.lcpca_denoise.output_path=''; %%required-null initialize here input with GUI | ||
hmri_def.denoising.lcpca_denoise.min_dimension= 0; %%required-initialize here | ||
hmri_def.denoising.lcpca_denoise.max_dimension = -1; %%required-initialize here | ||
hmri_def.denoising.lcpca_denoise.unwrap = false; %%optional | ||
hmri_def.denoising.lcpca_denoise.rescale_phs = false; %%optional | ||
hmri_def.denoising.lcpca_denoise.process_2d=false; %%optional | ||
hmri_def.denoising.lcpca_denoise.use_rmt=false; %%optional | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
%init the global variable which carries the params | ||
global hmri_def; | ||
|
||
%Enter denoising default values as: hmri_def.denoising.(denoising-protocol).(default-value) | ||
|
||
%The default values for lcpca denoising protocol | ||
%all optional parameters turned off | ||
hmri_def.denoising.lcpca_denoise.mag_input = {}; %%required-null initialize here input with GUI | ||
hmri_def.denoising.lcpca_denoise.phase_input = {}; %%optional-null initialize here input with GUI | ||
hmri_def.denoising.lcpca_denoise.output_path=''; %%required-null initialize here input with GUI | ||
hmri_def.denoising.lcpca_denoise.min_dimension= 0; %%required-initialize here | ||
hmri_def.denoising.lcpca_denoise.max_dimension = -1; %%required-initialize here | ||
hmri_def.denoising.lcpca_denoise.unwrap = false; %%optional | ||
hmri_def.denoising.lcpca_denoise.rescale_phs = false; %%optional | ||
hmri_def.denoising.lcpca_denoise.process_2d=false; %%optional | ||
hmri_def.denoising.lcpca_denoise.use_rmt=false; %%optional |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.