Search found 3 matches

by i.sch
Wed, 2010-06-02, 08:44
Forum: DCMTK - General
Topic: retrieving private tag values
Replies: 4
Views: 5580

Thanks it worked. I modified the example a little bit and used the nextInContainer function instead, since i am not deleting elements. Here is a simplified code snipplet to make this topic complete. DcmObject *dobj = NULL; DcmTagKey tag; while((dobj = pDcmDataset->nextInContainer(dobj)) != NULL){ ta...
by i.sch
Fri, 2010-05-28, 08:35
Forum: DCMTK - General
Topic: retrieving private tag values
Replies: 4
Views: 5580

[...] So, you want to know whether a particular private creator string is used in the DICOM dataset - in any of the private groups? exactly [edit] Thanks for the tip. Now the only problem seems to be, to determine how many entries a group has. In the Tag "Group Length" there is just a num...
by i.sch
Fri, 2010-05-28, 08:10
Forum: DCMTK - General
Topic: retrieving private tag values
Replies: 4
Views: 5580

retrieving private tag values

Hi, i am new to the dcmtk, so maybe this question will sound trivial to some board members. I have several dicom files, and some of them contain private tags. It looks like following: 0009, 0000 Group Length, UL, 1, somenumber 0009, 0010 Private Creator, Lo, 1, sometext 0009, 0011 Private Creator, L...