-
dicomattribute
- display header attributes of a DICOM file (seedicomattribute -h
) -
dicomdiff
- applydicomattribute
to two dicom files and diff the outputs using systemdiff
. (usage:dicomdiff file1 file2
).
- Create a virtual environment with
virtualenv
/virtualenvwrapper
and install dependencies:
mkvirtualenv -p python3 -a . dicomtools
pip install -r requirements.txt
- Put the bash scripts on your PATH. One of:
ln -s dicomattribute/dicomattribute /somewhere/on/my/system/path/dicomattribute && ln -s dicomdiff/dicomdiff /somewhere/on/my/system/path/dicomdiff
or
export PATH=${PATH}:${pwd}/dicomattribute:${pwd}/dicomdiff