view Tests/GetPixelDataVR.py @ 620:8ba9b20ae95f debug-pg-transactions

debug pg transactions tests
author Alain Mazy <am@osimis.io>
date Mon, 05 Feb 2024 22:32:39 +0100
parents 7de5fd295025
children
line wrap: on
line source

#!/usr/bin/env python3

import sys
import pydicom

if len(sys.argv) <= 1:
    print('Print the VR of the pixel data of a set of DICOM files')
    print('Usage: %s [list of DICOM files]' % sys.argv[0])
    exit(-1)

for f in sys.argv[1:]:
    try:
        ds = pydicom.dcmread(f)
        print(f, '=>', ds['PixelData'].VR)
    except:
        print(f, '=>', 'Unable to parse')