This repository accompanies the ISMRM-OSIPI DCE-MRI Challenge and provides supplementary data from the manuscript. OSIPI TF6.2 designed this OSIPI-DCE challenge for evaluating DCE-MRI methods that estimate the volume transfer constant (
A set of parameter maps and scripts for analyzing the challenge data are provided withi this repository. For access to the challenge guidelines and challenge DICOM data files see the OSF repository (https://osf.io/u7a6f).
Analysis methods were submitted by competing teams which were evaluated and compared with each other for quantification of
The submissions were then ranked according to a global score reflecting that an ideal method should be accurate AND repeatable AND reproducible.
This data and code collection includes:
- The Digital Reference Object parameter maps used the simulate the synthetic patient data:
- NIfTI files
- Compressed numpy array files
- Challenge DICOM data:
- Synthetic patient data provided for the challenge.
- Clinical patient data provided for the challenge.
- These data are based on (Synthetic) or directly (Clinical) from the RIDER NEURO Database from TCIA
- Barboriak, D. (2015). Data From RIDER NEURO MRI. The Cancer Imaging Archive. https://doi.org/10.7937/K9/TCIA.2015.VOSN3HN1
- Clark, K., Vendt, B., Smith, K., Freymann, J., Kirby, J., Koppel, P., Moore, S., Phillips, S., Maffitt, D., Pringle, M., Tarbox, L., & Prior, F. (2013). The Cancer Imaging Archive (TCIA): Maintaining and Operating a Public Information Repository. In Journal of Digital Imaging (Vol. 26, Issue 6, pp. 1045–1057). Springer Science and Business Media LLC. https://doi.org/10.1007/s10278-013-9622-7 PMCID: PMC3824915
- Scoring script used for the challenge:
- This calculates scores with plotting options.
- NIfTI mask files to extract tumor regions-of-interest defined for the challenge
- DRO production code used to produce the synthetic data used in the challenge:
- All functions used can be found within the enclosing folder
- To run using challenge ROIs for AIF please unzip the .npy files in the AIFmasksforDRO directory
All the parameter maps used in this repository can be found in the synthetic data part of the repository here. The are serveral data types available: NIfTI or numpy array files. These maps include
The mask NIfTI files, which define the regions of interest for the analysis, can be found here. These mask files should be used to restrict the scoring area to specific regions of interest within the DCE-MRI data.
A scoring script is provided in this repository titled challengeScoring.py. This script is designed to evaluate the performance of different methods on the challenge data. However, please note that using this script requires a fully analyzed dataset consisting of Ktrans NIfTI files for each synthetic and clinical patient.
To use the scoring script, follow these steps:
- Ensure that you have a fully analyzed dataset with
$K^{trans}$ NIfTI files for each synthetic and clinical patient. - Modify the script as needed to provide the necessary paths to your
$K^{trans}$ NIfTI files.- Recommended to save as inside a 'TeamName' directory and seperate 'TeamName_neutral' directory for reproduced entry values.
- See example directories in the correct formatting in the constant
$K^{trans}$ test case.
- Run the script using a compatible Python environment to obtain the evaluation scores for your method.
Please note that the scoring script assumes the availability of the required data files and follows specific guidelines outlined
- numpy 1.20.1
- matplotlib 3.3.4
- pydicom 2.1.2
- scipy 1.6.1
- nibabel 3.2.1
A scoring script is provided in this repository: challengeScoring.py. This script is designed to evaluate the performance of different
To use the scoring script, follow these steps:
- Clone or pull this directory.
- Analyse the Challenge data set.
- Find the challenge data for download in this repository, or at the OSF page.
- Follow the Challenge guidelines.
- Save your
$K^{trans}$ NIfTI map in specifc naming format which is different for synthetic and clinical data sets:- Synthetic_P#_Visit#.nii; Clinical_P#_Visit#.nii
- See an example directory in the correct formatting in the constant
$K^{trans}$ test case. - If files are not named correctly the scoring script will not run as expected.
- Ensure that you have a fully analyzed dataset with
$K^{trans}$ NIfTI files for each synthetic and clinical patient. - Add your directory to entryDirectories in the Scoring location.
- Recommended to save as inside a 'TeamName' directory and seperate 'TeamName_neutral' directory for reproduced entry values.
- See example directories in the correct formatting in the constant
$K^{trans}$ test case.
- Modify the script as needed to provide the necessary paths to your
$K^{trans}$ NIfTI files.- Add yout 'TeamNAme' that you have chosen for the directory in entryDirectories to
entry_list
.
- Add yout 'TeamNAme' that you have chosen for the directory in entryDirectories to
- Run the script using a compatible Python environment to obtain the evaluation scores for your method.
The files contained in the DRO_production directory were used to produce the synthetic data used in the challenge.
Warning You must unzip the files in AIFmasksforDRO otherwise the script will not run correctly, unless you wish to define your own AIF regions.
Note To select your own AIF region please adjust the
use_saved
parameter to0
onLine 93
of main.py.
To use:
- The overall script file is
main.py
. - Make sure all relevant files are unzipped (see notes above).
- The script has to be run seperately for synthetic patient 1 and 2.
- Change
DROnum
to1
or2
between runs.
- Change
- If you wish to output new DRO data change
save_new_DRO_data
to1
onLine 45
. - If you have selected to chose you own AIF a pop up window will appear.
- You need to trace a full region outline or it will auto connect the end two points with a stright line.
- You may select more than one region.
- Close the pop up after you have selected all regions and the array data will be saved in the script.
- To apply this for other DICOM DCE-MRI data provide the correct paths in
Lines 29-40
.