Search found 1437 matches

by Marco Eichelberg
Mon, 2005-06-13, 09:12
Forum: DCMTK - General
Topic: storescp & acuson problem
Replies: 1
Views: 3664

Without additional details, no. Something seems to be going wrong. But you knew that already.
by Marco Eichelberg
Mon, 2005-06-13, 09:11
Forum: DCMTK - General
Topic: How can DIMSE_storeProvider() fail?
Replies: 1
Views: 3620

This means that the sender is violating the DICOM network protocol in a severe way: the two parts that make up a DICOM C-STORE-RQ message (command set and data set) have different presentation context identifiers, something that must never ever happen in the DICOM network protocol.
by Marco Eichelberg
Thu, 2005-06-09, 08:31
Forum: DCMTK - General
Topic: movescu with the -aem option?
Replies: 1
Views: 4134

Check your configuration. With the -aem option movescu transmits a symbolic AETITLE to imagectn, and imagectn resolves this into an IP address and port number from its own config file. In the config file, however, I read port number 10000 whereas movescu seems to be listening on port 10001. This can...
by Marco Eichelberg
Thu, 2005-06-09, 08:29
Forum: DCMTK - Installation
Topic: Make on SunOS
Replies: 5
Views: 10042

If configure is unable to compute the sizeof char (which sounds like a pretty trivial task), this usually means that something is wrong with the build environment. Most likely something is missing from the LD_LIBRARY_PATH that prevents configure from running the binaries it has compiled and linked. ...
by Marco Eichelberg
Mon, 2005-06-06, 09:07
Forum: DCMTK - General
Topic: Error: DCMTK needs stringstream or strstream type
Replies: 7
Views: 11010

The error message you see indicates that neither HAVE_SSTREAM nor HAVE_STRSTREAM are defined in cfunix.h, which would mean that something has gone severely wrong with the configure process. Re-run DCMTK's configure script, check for errors and inspect the cfunix.h header file that is produces by the...
by Marco Eichelberg
Mon, 2005-06-06, 08:59
Forum: DCMTK - General
Topic: Does DCMTK support Ultrasound Multiframe (RLE Lossless)?
Replies: 17
Views: 27658

The modification would affect DcmRLECodecDecoder::decode() in dcmdata/libsrc/dcrleccd.cc, however, this is some fairly complex code and I don't have the time right now to spend a couple of hours on developing a workaround. I will put this on our to-do-list, but cannot promise more at the moment.
by Marco Eichelberg
Mon, 2005-06-06, 08:56
Forum: DCMTK - Installation
Topic: Compiling dcmtk 3.5.3 on OSX (gcc 4.0)
Replies: 8
Views: 54951

This will be added to the next release, I have actually already committed the changes to our internal CVS a couple of weeks ago.
by Marco Eichelberg
Fri, 2005-06-03, 13:01
Forum: DCMTK - General
Topic: Does DCMTK support Ultrasound Multiframe (RLE Lossless)?
Replies: 17
Views: 27658

To be more precise, the decompressor refuses the image because some of the RLE fragments decompress into insufficient data to fill a frame (frame 1 and 3 of the sample you provided are short by a single byte, but that is sufficient in this case). So according to our analysis the multiframe images ar...
by Marco Eichelberg
Fri, 2005-06-03, 12:56
Forum: DCMTK - General
Topic: Error: DCMTK needs stringstream or strstream type
Replies: 7
Views: 11010

Make sure that you always #include "osconfig.h" before you include any other DCMTK header file. Also, make sure that the compiler does not find another version of "osconfig.h" or "cfunix.h". Both would explain the error message.
by Marco Eichelberg
Mon, 2005-05-30, 15:03
Forum: DCMTK - General
Topic: DBREGIMG quota
Replies: 1
Views: 3612

If I remember correctly, dbregimg never deletes image files, it only ever modifies the index.dat registration database. The error message you are seeing seems to indicate that you are trying to add an image to the database that has already been registered with the same SOP instance UID but a differe...
by Marco Eichelberg
Mon, 2005-05-30, 15:01
Forum: DICOMscope - General
Topic: Modality LUT / DICOM Part 14
Replies: 2
Views: 9519

DICOMscope indeed is "compatible" with DICOM Part 14 in the sense that it allows a display to be calibrated against the GSDF and it also supports Presentation States including a faithful rendering of the DICOM grayscale display pipeline. If you want your scanned images to be displayed corr...
by Marco Eichelberg
Mon, 2005-05-30, 14:29
Forum: DCMTK - General
Topic: [resolved] Odd length in character string values
Replies: 2
Views: 4281

DICOM strings except UI are indeed space padded to achieve even length. DCMTK creates and removes this padding character transparently in the background (unless certain options are enabled), so the XML representation created by dcm2xml does not see this artifact, and does not have to.
by Marco Eichelberg
Wed, 2005-05-25, 11:02
Forum: DCMTK - General
Topic: JPEG2000LossLessOnly Transfer Syntax with native Icon Image
Replies: 4
Views: 7556

From the perspective of the parser, "isIconImage" and "isPrivate" would be synonymous. The only meaning of this flag is that it tags instances of the DcmPixelData class that may be written with explicit length (i.e. with uncompressed content) in encapsulated (compressed) transfer...
by Marco Eichelberg
Wed, 2005-05-25, 10:51
Forum: DCMTK - General
Topic: unable to retrive images using movescu
Replies: 3
Views: 5913

This is not possible with movescu alone. You could use storescp with the --output-directory and --rename-on-eostudy command line options and use movescu to initiate the retrieval to storescp. In that case, storescp should be listening on the target port and movescu needs to use a dummy listen port t...
by Marco Eichelberg
Wed, 2005-05-25, 10:47
Forum: DCMTK - General
Topic: writing into print config file in run time
Replies: 1
Views: 3461

There is nothing in the toolkit that would allow you to do that, but it is certainly possible. You would have to write the configuration file at runtime, and then restart all the tools (dcmprscu and dcmpssnd instances) that read the configuration file at startup.