Skip to content
Snippets Groups Projects
Commit c3db3b18 authored by Tamino Huxohl's avatar Tamino Huxohl
Browse files

add capability to a dump a dicom header to dicom module

parent c93101a0
No related branches found
No related tags found
No related merge requests found
...@@ -124,3 +124,13 @@ def change_uid(dcm: pydicom.dataset.FileDataset) -> pydicom.dataset.FileDataset: ...@@ -124,3 +124,13 @@ def change_uid(dcm: pydicom.dataset.FileDataset) -> pydicom.dataset.FileDataset:
dcm.SeriesInstanceUID = UID_PREFIX + str(random.randint(10000000000000, 99999999999999)) dcm.SeriesInstanceUID = UID_PREFIX + str(random.randint(10000000000000, 99999999999999))
dcm.SOPInstanceUID = UID_PREFIX + str(random.randint(10000000000000, 99999999999999)) dcm.SOPInstanceUID = UID_PREFIX + str(random.randint(10000000000000, 99999999999999))
return dcm return dcm
if __name__ == "__main__":
import argparse
parser = argparse.ArgumentParser(description="Dump the header of a DICOM image", formatter_class=argparse.ArgumentDefaultsHelpFormatter)
parser.add_argument("file", type=str, help="the DICOM file of which the header is dumped")
args = parser.parse_args()
dcm = pydicom.dcmread(args.file)
print(dcm)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment