Skip to content

Files

Latest commit

ba765f6 · Feb 15, 2018

History

History
30 lines (19 loc) · 757 Bytes

dcmutils.rst

File metadata and controls

30 lines (19 loc) · 757 Bytes

DICOM Utilities

Collection of libraries and applications that helps with DICOM testing and troubleshooting.

DCMTK - DICOM Toolkit

DICOM tag (gggg,eeee) = group,element

dcmodify -e "(gggg, eeee)=value" filename
dcmodify -m "(gggg, eeee)=value" filename
find . -name "*.dcm" -exec dcmodify -e "(gggg, eeee)=value" \{\} \;
find . -name "*.dcm" -exec dcmodify -m "(gggg, eeee)=value" \{\} \;
find . -name "*.dcm" -exec dcmconv +ti \{\}  \{\}.new \;