-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
small changes to examples/README.md etc
[ci skip]
- Loading branch information
1 parent
f6677ca
commit a7f1179
Showing
9 changed files
with
64 additions
and
36 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 |
---|---|---|
@@ -1,10 +1,15 @@ | ||
This folder's subfolders contain Matlab demo scripts for PET and MR reconstruction. | ||
|
||
The folder YOUR_PATH/build/install/bin (see SIRF/INSTALL.txt) must be in Windows path, | ||
Unfortunately, we no longer support Matlab, so have not checked in a while if these | ||
demos work. Apologies. | ||
|
||
See [the main README section](../README.md#environment-variables) for information | ||
on environment variables. | ||
|
||
The folder YOUR_PATH/build/install/bin (see SIRF/INSTALL.txt) must be in the Windows path, | ||
and the folder YOUR_PATH/build/install/matlab in Matlab path. | ||
|
||
To use Matlab doc feature on demo scripts, you also need to add folders | ||
YOUR_PATH/SIRF/examples/Matlab/MR and YOUR_PATH/SIRF/examples/Matlab/PET and their | ||
sub-folders to Matlab path. | ||
sub-folders to the Matlab path. | ||
|
||
Please also see the Wiki page on Examples (MR). |
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,5 @@ | ||
This folder contains simple scripts demonstrating the use of SIRF for | ||
PETMR related tasks. There are examples on synergistic image reconstruction | ||
in our Jupyter notebooks in the [SIRF Exercises](https://github.com/SyneRBI/SIRF-Exercises/#readme). | ||
|
||
See the [Python/README](../README.md) for instructions. |
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,12 +1,22 @@ | ||
This folder's subfolders named PET and MR contain Python demo scripts for PET and MR reconstruction respectively. | ||
This folder's subfolders contains Python demo scripts. | ||
|
||
For a brief description of each script's purpose and usage type | ||
``` | ||
```sh | ||
python <script_name>.py --help | ||
``` | ||
(on VM use `python3` instead of `python`). | ||
(on the VM use `python3` instead of `python`). | ||
|
||
Note that the SIRF Python utilities should be in your `PYTHONPATH` (see the installation instructions). | ||
|
||
To run the demo scripts, please create an environment variable `SIRF_PATH` whose value is the location of your SIRF source, e.g. `/home/sirfuser/devel/SIRF`. (NOTE: even on Windows, you must use `/` in paths, not `\\`.) If you do not do this, you can still run the demos but you will have to give full path to raw data files via command-line options `-p` or `--path`. | ||
See [the main README section](../README.md#environment-variables) for information | ||
on environment variables. | ||
If you do not set the environment variables that allow SIRF to find the example data, | ||
you can still run most demos but you will have to give full path to raw data files via command-line options `-p` or `--path`. | ||
|
||
## Subfolders: | ||
- [MR](MR#readme) | ||
- [PET](PET#readme) | ||
- [PETMR](PETMR#readme) | ||
- [Registration](Registration#readme) | ||
- [SPECT](SPECT#readme) | ||
|
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 @@ | ||
This folder contains scripts demonstrating the use of SIRF for image registration reconstruction and related tasks. | ||
|
||
Scripts currently use NiftyReg or SPM as the registration engine | ||
|
||
See the [Python/README](../README.md) for instructions. |
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 @@ | ||
This folder contains scripts demonstrating the use of SIRF for SPECT reconstruction and related tasks. | ||
|
||
All scripts currently use STIR as the reconstruction engine but actually allow the use of any reconstruction engine that provides the necessary functionality such as `AcquisitionData` object, `make_Poisson_loglikelihood` function etc. | ||
|
||
See the [Python/README](../README.md) for instructions. |
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