I can't access to Transfer Syntax UID and some other tags #1770
Unanswered
miguelyanez18
asked this question in
Q&A
Replies: 1 comment 3 replies
-
These tags (e.g. tags in group 2) do not belong to the dataset itself, but are meta data tags, which you can access via ds = dcmread('myfile.dcm')
if hasattr(ds, 'file_meta'):
for meta_tag in ds.file_meta:
print(meta_tag)
print(ds.file_meta.TransferSyntaxUID) |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, I'm using Python to work with Dicom files using the pydicom package. I'm having trouble accessing some tags like Transfer Syntax UID. I'm attaching a picture of tags I can't get, and another picture of the error in the terminal when I tried to access Transfer Syntax UID value
Thank you in advance
Beta Was this translation helpful? Give feedback.
All reactions