Mercurial > hg > orthanc-tests
view Tests/GetPixelDataVR.py @ 644:5806bd442a37 large-queries
new tests for /extended-api-v1/changes
author | Alain Mazy <am@orthanc.team> |
---|---|
date | Thu, 11 Apr 2024 19:04:16 +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')