Search found 18 matches

by Oliver Nix
Fri, 2009-10-02, 11:49
Forum: DCMRT
Topic: How to access data elements in sequence item for RT IODs
Replies: 5
Views: 30415

Using the iterator is a good idea. The code looks now like this if (seq.gotoFirstItem().good()) { do { DRTReferencedFrameOfReferenceSequence::Item &item = seq.getCurrentItem(); OFString uid; item.getFrameOfReferenceUID(uid); DRTRTReferencedStudySequence &reference_study_sequence_ref = item.g...
by Oliver Nix
Thu, 2009-10-01, 14:53
Forum: DCMRT
Topic: How to access data elements in sequence item for RT IODs
Replies: 5
Views: 30415

How to access data elements in sequence item for RT IODs

I like to access elements from nested sequences for example from a DICOM RT structure set file. Let's say the structure of the file is as follows (dcmdump output) 3006,0010) SQ (Sequence with undefined length #=2) # u/l, 1 ReferencedFrameOfReferenceSequence (fffe,e000) na (Item with undefined length...
by Oliver Nix
Tue, 2009-09-22, 17:06
Forum: DCMRT
Topic: How can I get the dose value from DRTDoseIOD?
Replies: 12
Views: 38279

Easy to use retrieval of dose data and scaling to Gy values is definitely on the agenda for the mid-level API of the DCMRT DICOM RT implementation. But it will take some time until this will be available. For now please use the follwing code for retrieving dose data from a DICOM RT Dose file. // Ope...