Search found 7 matches

by seabhcan
Thu, 2007-06-07, 11:54
Forum: DCMTK - General
Topic: Error: Dataset not in ascending tag order
Replies: 2
Views: 5150

Thanks.

dcmdump +E showed that the files did have nonstandard tags and incorrect sequence. ezDicom must simply ignore those tags.
by seabhcan
Tue, 2007-06-05, 11:44
Forum: DCMTK - General
Topic: Error: Dataset not in ascending tag order
Replies: 2
Views: 5150

Error: Dataset not in ascending tag order

Hi, I'm getting some very odd errors when opening some dicom files (but most work fine). They seem to be originating from dcitem.cxx, lines 1193 or 1217. The error reads: DcmItem: Dataset not in ascending tag order, at element (0000,0000) DCMSequenceOfItemsL Parse error in sequence, found (adde,efbe...
by seabhcan
Fri, 2007-06-01, 10:15
Forum: DCMTK - General
Topic: Image production question
Replies: 2
Views: 4051

Yes. That seems to have cured it. There was a call to "renderPixelData();". removing that seems to have impoved things
by seabhcan
Thu, 2007-05-31, 18:40
Forum: DCMTK - General
Topic: Image production question
Replies: 2
Views: 4051

Image production question

Hi, I'm using this wonderful Dicom library to access image data in dicom files. One interesting problem I have is that the images are quite different when I use the program dcm2pnm.exe to when I use the dcmtk code directly. See these images attached - the dcm2pnm one is 'flatter' but with more detai...
by seabhcan
Fri, 2007-05-11, 14:05
Forum: DCMTK - General
Topic: difficulty using MoveSCU
Replies: 0
Views: 17587

difficulty using MoveSCU

Hello, (First, Thank you very much for your excellent DICOM code!) I want to use MoveSCU to copy some DICOM files from another computer. (I have the new version of MoveSCU which has the --key bug fixed) I run the command: movescu -v -P -k 0008, 0052="PATIENT" -k 0010,0020="0526173&quo...
by seabhcan
Fri, 2007-05-11, 09:28
Forum: DCMTK - General
Topic: geting C-Find data out?
Replies: 2
Views: 4361

Here's the solution I've come up with, but I'm open to suggestions of improvements: Taking the code of FindSCU I added the global variable: #include <iostream> #include <tchar.h> #include <sstream> #include <string> ostringstream g_outStreamTEXT; ostringstream is a sting that behaves like a stream. ...
by seabhcan
Thu, 2007-05-10, 15:25
Forum: DCMTK - General
Topic: geting C-Find data out?
Replies: 2
Views: 4361

geting C-Find data out?

I'm writing a wrapper for the dcmnet code in order to make a dll accessible from c# or java.

Does anybody know an elegant way to get the c-find results out? At the moment they are writing to cout.