-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Project structure and readme updates
- Loading branch information
Laurence Jackson
authored and
Laurence Jackson
committed
Jun 10, 2019
1 parent
e1d0b70
commit 9bdb202
Showing
9 changed files
with
46 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -56,3 +56,6 @@ docs/_build/ | |
|
||
# PyBuilder | ||
target/ | ||
|
||
# other | ||
.idea/ |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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 |
---|---|---|
@@ -1 +1,26 @@ | ||
sweep_recon | ||
# sweep-recon | ||
|
||
--- | ||
## Introduction | ||
Reconstruction code for respiration resolved SWEEP acquisitions. The code presented here is a builds upon the reconstructiion pipeline described in the paper below. If you find this code useful please acknowledge this paper (in press). | ||
|
||
>Jackson LH, Price AN, Hutter J et al. Respiration resolved imaging with continuous stable state 2D acquisition using linear frequency SWEEP. Magn Reson Med. 2019;00:1–15. | ||
An outline of the reconstruction pipeline is given in the figure below. For more details please refer to the paper given above. | ||
|
||
 | ||
|
||
## Example | ||
``` | ||
Usage: | ||
sweeprecon -i path_to_nii <optional args> | ||
Optional arguments: | ||
--thickness <float> :: thickness of acquisition slices in mm (default 4mm) | ||
--nstates <int> :: number of respiration states to receonstruct to (defualt 4) | ||
--recon_thickness <float> :: thickness of reconstructed slices in mm (default isotropic) | ||
--redo :: flag to redo processing from scratch | ||
--resort_only :: flag to stop processing after resort step | ||
--crop <float> :: factor to crop from either side of image for bodyarea mask (default 0.2) | ||
``` | ||
|
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 @@ | ||
import sys | ||
|
||
from sweeprecon.applications.app_sweep_recon import main | ||
|
||
if __name__ == "__main__": | ||
print('running __main__') | ||
sys.exit(main()) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
Empty file.
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,4 @@ | ||
|
||
|
||
def main(): | ||
return |
Empty file.