-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
5ttgen deep_atropos: Multiple changes
- Add capability take as input the concatenated tissue probability images as an alternative to the segmentation label image. - Change default allocation of brain stem to be the 5th volume, in line with 5ttgen hsvs behaviour; this can be overridden using the -white-stem option. - Change allocation of cerebellum to be subcortical grey matter. - Import updated script test data, and add tests for the new command. - Add RS to command author list.
- Loading branch information
Showing
8 changed files
with
85 additions
and
45 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
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
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,6 @@ | ||
#!/bin/bash | ||
# Verify default operation of "5ttgen deep_atropos" | ||
# where the input is the concatenation of tissue probability images | ||
# Outcome is compared to that generated using a prior software version | ||
5ttgen deep_atropos 5ttgen/deep_atropos/probability_images.nii.gz tmp.mif -force | ||
testing_diff_image tmp.mif 5ttgen/deep_atropos/fromprob_default.mif.gz |
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,7 @@ | ||
#!/bin/bash | ||
# Verify default operation of "5ttgen deep_atropos" | ||
# where the input is the concatenation of tissue probability images | ||
# and the brain stem is allocated to WM rather than 5th volume | ||
# Outcome is compared to that generated using a prior software version | ||
5ttgen deep_atropos 5ttgen/deep_atropos/probability_images.nii.gz tmp.mif -white_stem -force | ||
testing_diff_image tmp.mif 5ttgen/deep_atropos/fromprob_whitestem.mif.gz |
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,6 @@ | ||
#!/bin/bash | ||
# Verify default operation of "5ttgen deep_atropos" | ||
# where input image is the segmentation label image | ||
# Outcome is compared to that generated using a prior software version | ||
5ttgen deep_atropos 5ttgen/deep_atropos/segmentation_image.nii.gz tmp.mif -force | ||
testing_diff_image tmp.mif 5ttgen/deep_atropos/fromseg_default.mif.gz |
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,7 @@ | ||
#!/bin/bash | ||
# Verify default operation of "5ttgen deep_atropos" | ||
# where input image is the segmentation label image | ||
# and the brain stem is allocated to WM rather than 5th volume | ||
# Outcome is compared to that generated using a prior software version | ||
5ttgen deep_atropos 5ttgen/deep_atropos/segmentation_image.nii.gz tmp.mif -white_stem -force | ||
testing_diff_image tmp.mif 5ttgen/deep_atropos/fromseg_whitestem.mif.gz |