view Tests/GetPixelDataVR.py @ 652:dfd42a6c13fa

added test_tags_after_pixel_data
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 04 Jun 2024 17:47:11 +0200
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')