Getting started • Usage • Roadmap • Citation • Credits
Update 17.10.2024:
‼️ The TwixMRIAnonymizer tool is now integrated in our new holistic de-identification tool. Check out the corresponding repository: https://github.com/TIO-IKIM/medical_image_deidentification‼️
Twix MRI Anonymizer is a lightweight Python anonymization-tool for Siemens MRI raw data format twix.
Twix data contains multiple headers. while the dicom header, often saved as ['hdr'] is easily anonymizable, the much larger header ['hdr_string'] is often overlooked, but contains all the same information as the general header, as well as a detailed overview of the scan settings.
If anonymization is performed only on the first header, all the information contained in the latter will be pasted back into ['hdr'] when saving the "anonymized" file. This brings up the necessity and chances of the following code, which scans the ['hdr_string'] for all informations which need to be anonymized and additionaly can save useful metadata for further tasks.
While the main focus lies on the anonymization of MRI twix files, this tool also allows researchers to extract important metadata, such as sequence name, TR/TI and acceleration factor, for a large amount of data and saved in a csv overview.
-
Clone repository:
git clone https://github.com/TIO-IKIM/TwixMRIAnonymizer.git
-
Create a conda environment with Python version 3.11.2 and install the necessary dependencies:
conda env create -n anonymizer -f requirements.txt
In case of installation issues with conda, use pip install -r requirements.txt to install the dependecies.
-
Activate your new environment:
conda activate anonymizer
-
Run the script with the corresponding cli parameter, e.g.:
python3 anonymize.py --i your/input/path --o your/output/path
Alternative pip installation from inside the repository folder:
pip install -e .
Anonymization CLI
usage: anonymize.py [-h] [--i I] [--o O] [--f] [--meta_only]
options:
-h, --help show this help message and exit
--i I The path to the TWIX file or directory containing TWIX files to be anonymized.
--o O The path to save the anonymized files.
--f If set, force overwrite existing files. Defaults to False
--meta_only If set, only save the metadata, but do not write anonymized file. Defaults to False
Script will be wrapped into a package and published on pip.
If you use our code in your work, please cite us with
@misc{rempe2024deidentificationmedicalimagingdata,
title={De-Identification of Medical Imaging Data: A Comprehensive Tool for Ensuring Patient Privacy},
author={Moritz Rempe and Lukas Heine and Constantin Seibold and Fabian Hörst and Jens Kleesiek},
year={2024},
eprint={2410.12402},
archivePrefix={arXiv},
primaryClass={eess.IV},
url={https://arxiv.org/abs/2410.12402},
}
Parts of the code of TwixAnonymizer is based on the great package Suspect by Ben Rowland, et al. for MRS processing.