-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added some documentation and example scripts
- Loading branch information
Showing
9 changed files
with
45 additions
and
41 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
## Example scripts for various subtools | ||
|
||
* `real_tests` - tests with real data | ||
* `synthetic_tests` - tests with synthetic data | ||
* `validation_dataset` - validation dataset for longitudinal pipeline | ||
|
||
|
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 @@ | ||
## examples for running various pipelines with synthetic data | ||
|
||
* `test_lng_model` - longitudinal model creation (4D) | ||
* `test_model_creation` - model creation (3D) | ||
* `test_registration` - registration | ||
* `test_segmentation` - segmentation |
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 @@ | ||
## Model creation examples | ||
|
||
* `prepare_test_data.sh` - prepare synthetic dataset | ||
* `prepare_test_data_with_bias.sh` - prepare synthetic dataset with some bias field | ||
|
||
To execute examples, setup PYTHONPATH to point to the location of `ipl` directory, then run `python -m scoop -n <n> <script.py>` | ||
|
||
* `scoop_test_1.py` - create 3 symmetric models, using linear registration with 6 parameters (rigid body), 9 parameters and 12 parameters | ||
* `scoop_test_2.py` - create 3 non-symmetric models, using linear registration with 6 parameters (rigid body), 9 parameters and 12 parameters | ||
* `scoop_test_bias*.py` - generate models compensating for bias field ( linear coregistration) | ||
* `scoop_test_nl.py` - generate model using non-linear coregistration with minctracc, non-simmetric | ||
* `scoop_test_nl_sym.py` - generate model using non-linear coregistration with minctracc, simmetric | ||
* `scoop_test_nl_elastix.py` - generate model using non-linear coregistration with Elastix | ||
* `scoop_test_nl_ants.py` - generate model using non-linear coregistration with ANTs | ||
* `scoop_test_nl_dd.py` - generate model using non-linear coregistration with diffeomorphic demons | ||
* `scoop_test_nl_ldd.py` - generate model using non-linear coregistration with log-diffeomorphic demons |
11 changes: 0 additions & 11 deletions
11
examples/synthetic_tests/test_model_creation/test_scipy.xfm
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 @@ | ||
## Validation dataset for longitudinal pipeline | ||
|
||
To run: | ||
* Download data using `download_validation_dataset.sh` script | ||
* Run pipleine on 4 cores : `PARALLEL=4 MNI_DATAPATH=/opt/minc/share run_validation_nc.sh` | ||
|
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,5 @@ | ||
#! /bin/sh | ||
|
||
|
||
wget ipl_subject43.tar.gz | ||
tar zxf ipl_subject43.tar.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
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