Search found 15 matches

by braggpeaks
Fri, 2015-07-31, 12:32
Forum: DCMTK - General
Topic: Problem with Wildcard in Worklist
Replies: 2
Views: 5123

Re: Problem with Wildcard in Worklist

Had exactly the same issue. However, it was the missing "lockfile" file in the "<dfp>/<AET>" folder.
by braggpeaks
Sun, 2013-02-24, 19:14
Forum: DCMTK - Installation
Topic: How to learn to program with C++ in dcmtk?
Replies: 4
Views: 8906

Re: How to learn to program with C++ in dcmtk?

Programming in C++ is a sophisticated task. Although I would recommend using DCMTK for performance, security and robustness reasons, I'm convinced that MATLAB >R2010 is able to handle 4D images. Try to linearize your 4D-array by using A(:) (mxnxoxp should be qx1 then) before writing to the file.
by braggpeaks
Sun, 2013-02-24, 19:07
Forum: DCMTK - Installation
Topic: Building DCMTK 3.6.0 with gcc 4.7.2 and CMake 2.8.10
Replies: 3
Views: 6474

Re: Building DCMTK 3.6.0 with gcc 4.7.2 and CMake 2.8.10

Hey Jörg,

yes, but since we're working in a CE-certified environment, we solely use releases that are declared as stable (although this is no warranty at all).
Is there a public roadmap for upcoming DCMTK releases?

Daniel
by braggpeaks
Sun, 2013-02-24, 15:55
Forum: DCMTK - Installation
Topic: Building DCMTK 3.6.0 with gcc 4.7.2 and CMake 2.8.10
Replies: 3
Views: 6474

Building DCMTK 3.6.0 with gcc 4.7.2 and CMake 2.8.10

Hey, here is a patch to successfully build DCMTK 3.6.0 with gcc 4.7.2 and CMake 2.8.10, tested on Ubuntu 12.10, 13.04 and on Fedora. diff -uNrb ./dcmtk-3.6.0/dcmimage/include/dcmtk/dcmimage/diargpxt.h ./dcmtk-3.6.0_p/dcmimage/include/dcmtk/dcmimage/diargpxt.h --- ./dcmtk-3.6.0/dcmimage/include/dcmtk...
by braggpeaks
Fri, 2012-06-29, 08:39
Forum: DCMTK - General
Topic: How to use DCMTK for recovering Pixel Spacing?
Replies: 9
Views: 10724

Re: How to use DCMTK for recovering Pixel Spacing?

Hi Michael,

I actually addressed chaircrusher, since he is obviously writing a new DICOMIO for ITK, which was previously done via GDCM and now, fortunately, via DCMTK. Sorry for the misunderstanding.

Daniel
by braggpeaks
Thu, 2012-06-28, 16:14
Forum: DCMTK - General
Topic: How to use DCMTK for recovering Pixel Spacing?
Replies: 9
Views: 10724

Re: How to use DCMTK for recovering Pixel Spacing?

Me again, somewhat offtopic:
Since we are interested in the DCMTK ImageIO, could you please give a short statement to your planned roadmap at ITK? I certainly read your minutes from Dec2011; are there any target dates?
Daniel
by braggpeaks
Sat, 2012-06-23, 14:34
Forum: DCMTK - General
Topic: Problems with element length
Replies: 7
Views: 7643

Re: Problems with element length

What tool are you using? Have you tried ImplicitLength? What if you don't modify anything, but save the file again; can you read the file then?
by braggpeaks
Thu, 2012-06-21, 08:09
Forum: DCMTK - General
Topic: How to use DCMTK for recovering Pixel Spacing?
Replies: 9
Views: 10724

Re: How to use DCMTK for recovering Pixel Spacing?

We also have a similar problem at our institution; this is our approximate approach for reading both 2D images and 3D stacks: - in-plane spacing is read from tags (0x0028,0x0030) or (0x0018,0x1164) or (3002,0011), understanding the mentioned order as priority level (if (0x0028,0x0030) is not existin...
by braggpeaks
Mon, 2012-04-30, 10:11
Forum: DCMTK - General
Topic: Problems with loading the meta-header
Replies: 5
Views: 6281

Thank you, Uli!

I made some benchmarks using dcmStopParsingAfterElement, but it is not significantly faster. Anyway, all my questions are now answered.

Daniel
by braggpeaks
Mon, 2012-04-30, 09:29
Forum: DCMTK - General
Topic: Problems with loading the meta-header
Replies: 5
Views: 6281

Thanks for your fast response. That was indeed the cause, got it now for SOPClassUID and SOPInstanceUID. But: I got some several tags that I further need (e.g. StudyInstanceUID). 1) where can I see, which tags are part of the dataset and 2) if StudyInstanceUID is part of the dataset, how can I quick...
by braggpeaks
Mon, 2012-04-30, 08:59
Forum: DCMTK - General
Topic: Problems with loading the meta-header
Replies: 5
Views: 6281

Problems with loading the meta-header

Hey, well, i am trying, regarding the well documented feature described in http://support.dcmtk.org/wiki/dcmtk/howto/loadmetaheader to only load the meta-header (mainly for performance issues), but I always get a bad()-state: Approach 2: status = fileFormat->loadFile(dicomFileNames.at(idx).c_str());...
by braggpeaks
Tue, 2012-04-17, 11:58
Forum: DCMTK - General
Topic: Access parent/ancestor node for a DcmSequenceOfItems
Replies: 5
Views: 6789

Oh well, nice :) Thanks.
by braggpeaks
Tue, 2012-04-17, 11:33
Forum: DCMTK - General
Topic: Access parent/ancestor node for a DcmSequenceOfItems
Replies: 5
Views: 6789

Thanks for your reply, i'll have a look on it. However, it would be nice - especially for nested functions (since every element has exactly one parent) - to access parent nodes for example via: sequence->parent()->findAndGetOFString(...); sequence->parent()->parent()->findAndGetOFString(...); even t...
by braggpeaks
Tue, 2012-04-17, 08:49
Forum: DCMTK - General
Topic: Access parent/ancestor node for a DcmSequenceOfItems
Replies: 5
Views: 6789

Access parent/ancestor node for a DcmSequenceOfItems

Hi there,

I am deeply nested into sequences of a DICOM RTPLAN. In a subfunction, I got a DcmSequenceOfItems object and I am trying to access the parent node in order to get some values there.

Thanks in advance,
Daniel