Search found 4 matches

by Kai Medis
Sun, 2016-12-18, 11:08
Forum: DCMTK - General
Topic: Reading private sequences
Replies: 6
Views: 8243

Re: Reading private sequences

Sorry, I noticed that we have version 3.6 and not 3.6.1 which contains the fix
by Kai Medis
Fri, 2016-12-16, 12:29
Forum: DCMTK - General
Topic: Reading private sequences
Replies: 6
Views: 8243

Re: Reading private sequences

BTW: I noticed a bug in DcmTag class The following constructor does a vr lookup which requires a privateCreator. But the creator is NULL DcmTag::DcmTag(Uint16 g, Uint16 e) : DcmTagKey(g, e), vr(EVR_UNKNOWN), tagName(NULL), privateCreator(NULL), errorFlag(EC_InvalidTag) { lookupVRinDictionary();//thi...
by Kai Medis
Tue, 2016-12-13, 15:31
Forum: DCMTK - General
Topic: Reading private sequences
Replies: 6
Views: 8243

Re: Reading private sequences

Indeed. Therefore the value (i.e. the element number) must be resolved before checking if the tag exists. My question is: does DcmTk have methods to resolve this?

I.e. how to go from 0x2005,0x0F to 0x2005,0x140F using the private creator string with DcmTk?
by Kai Medis
Tue, 2016-12-13, 12:34
Forum: DCMTK - General
Topic: Reading private sequences
Replies: 6
Views: 8243

Reading private sequences

Hi all, I am trying to find / resolve the number of the private code meaning to open a sequence with group, element code 2005,140F. My dictionary contains: (2005,"Philips MR Imaging DD 005",0F) SQ Philips MR Imaging Private Sequence 1 As you can see the number ‘14’ is not part of the dicti...