-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #108 from SyneRBI/Siemens_mMR_NEMA_IQ_lowcounts
Siemens mMR NEMA IQ lowcounts
- Loading branch information
Showing
7 changed files
with
67 additions
and
11 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
8 changes: 8 additions & 0 deletions
8
SIRF_data_preparation/Siemens_mMR_NEMA_IQ_lowcounts/README.md
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,8 @@ | ||
# Siemens mMR NEMA IQ data (low counts) | ||
|
||
This relies on the "normal" count level processsing to be done first, specifically the download and the ROIs. | ||
|
||
Steps to follow: | ||
1. `prepare_mMR_NEMA_IQ_data.py` | ||
2. copy VOIs | ||
3. further steps as [normal](../README.md#steps-to-follow-to-prepare-data) |
Empty file.
48 changes: 48 additions & 0 deletions
48
SIRF_data_preparation/Siemens_mMR_NEMA_IQ_lowcounts/prepare_mMR_NEMA_IQ_data.py
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,48 @@ | ||
import argparse | ||
import logging | ||
import os | ||
|
||
from ..data_utilities import prepare_challenge_Siemens_data, the_data_path, the_orgdata_path | ||
|
||
this_directory = os.path.dirname(__file__) | ||
repo_directory = os.path.dirname(this_directory) | ||
challenge_data_path = os.path.join(repo_directory, 'data') | ||
|
||
if __name__ == '__main__': | ||
parser = argparse.ArgumentParser(description='SyneRBI PETRIC Siemens mMR NEMA IQ data preparation script.') | ||
|
||
parser.add_argument('--log', type=str, default='warning') | ||
parser.add_argument('--start', type=float, default=0) | ||
parser.add_argument('--end', type=float, default=100) | ||
parser.add_argument('--raw_data_path', type=str, default=None) | ||
args = parser.parse_args() | ||
|
||
if args.log in ['debug', 'info', 'warning', 'error', 'critical']: | ||
level = eval(f'logging.{args.log.upper()}') | ||
logging.basicConfig(level=level) | ||
logging.info(f"Setting logging level to {args.log.upper()}") | ||
|
||
start = args.start | ||
end = args.end | ||
|
||
if args.raw_data_path is None: | ||
data_path = the_orgdata_path('Siemens_mMR_NEMA_IQ', 'raw', 'NEMA_IQ') | ||
else: | ||
data_path = args.raw_data_path | ||
|
||
data_path = os.path.abspath(data_path) | ||
logging.debug(f"Raw data path: {data_path}") | ||
|
||
intermediate_data_path = the_orgdata_path('Siemens_mMR_NEMA_IQ_lowcounts', 'processing') | ||
challenge_data_path = the_data_path('Siemens_mMR_NEMA_IQ_lowcounts') | ||
|
||
os.makedirs(challenge_data_path, exist_ok=True) | ||
os.chdir(challenge_data_path) | ||
os.makedirs(intermediate_data_path, exist_ok=True) | ||
|
||
f_template = os.path.join(data_path, 'mMR_template_span11.hs') | ||
|
||
prepare_challenge_Siemens_data(data_path, challenge_data_path, intermediate_data_path, '20170809_NEMA_', | ||
'60min_UCL.l.hdr', 'MUMAP_UCL.v', 'MUMAP_UCL.hv', 'UCL.n', 'norm.n.hdr', f_template, | ||
'prompts', 'mult_factors', 'additive_term', 'randoms', 'attenuation_factor', | ||
'attenuation_correction_factor', 'scatter', start, 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
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