You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to pydicom
I
am creating a version of findscu.py that can do multiple queries via an
input CSV file but gives priority to the dataset (ds) initialized
from a DICOM fille and via cmd line args which is the current behaviour.
Is there a more elegant way to merge datasets than this:
# Merge ds into dss for my_ds in dss: # print (my_ds) for d in ds.iterall(): elem = ElementPath(d.keyword + '='+ d.value) my_ds=elem.update(my_ds)
Regards
Normand Robert
unread,
Aug 30, 2024, 1:05:04 PM8/30/24
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to pydicom
Figured it out Very simple with update() method: my_ds.update(ds)