Search found 117 matches

by Thomas Wilkens
Mon, 2005-10-31, 07:39
Forum: DCMTK - General
Topic: storescp --rename-on-eostudy usage
Replies: 1
Views: 4140

Excerpt from storescp.man in dcmnet/docs (see this file for more information): Option \e --rename-on-eostudy refers to the above mentioned option \e --sort-conc-studies and can only be used in combination with this option. If a user specifies option \e --rename-on-eostudy and storescp determines tha...
by Thomas Wilkens
Mon, 2005-10-31, 07:36
Forum: DCMTK - General
Topic: Create a DicomDir
Replies: 3
Views: 5327

The restrictions to use a maximum of 8 characters in a filename and not to use a filename extension are specified in the DICOM standard. See Part 12, Annex F. These restrictions are based on ISO 9660, you might want to search the standard for this string. You will have to change your filenames to be...
by Thomas Wilkens
Fri, 2005-10-28, 06:43
Forum: DCMTK - General
Topic: Fatal error of DCMODIFY
Replies: 3
Views: 5786

Please send the image in question to dicom/at/offis/dot/de and we will try to find out why dcmodify doesn't cooperate. Please also provide us with the exact command line you are using and which makes dcmodify hang/fail.
by Thomas Wilkens
Fri, 2005-10-28, 06:39
Forum: DCMTK - General
Topic: Is there a Performed Procedure Step scu avilable in DCMTK - Is there an implementation of N-CREATE or N-SET IODs
Replies: 8
Views: 12684

As was already mentioned, we only have an MPPS-SCP (server) application. An MPPS-SCU (client) application is contained in IHE's Mesa Tools.

Please send a corresponding email to dicom/at/offis/dot/de if you are interested in the price of our MPPS-SCP application.
by Thomas Wilkens
Thu, 2005-10-27, 07:09
Forum: DCMTK - General
Topic: FINDSCU INFORMATION MODELS
Replies: 19
Views: 40632

Can any one explain me how sequences can be added in a query file Just look at the examples above, it is not that complicated. what is the meaning of (fffe,e000),item delimitation and sequence delimitation? The item delimitation item tells dump2dcm where the end of a corresponding item is. Attribut...
by Thomas Wilkens
Thu, 2005-10-27, 06:48
Forum: DCMTK - General
Topic: movescu operation save images at specified directory
Replies: 2
Views: 4303

Unfortunately, the StudyInstanceUID and the SeriesInstanceUID are not known before the execution of the application enters the StoreScpCallback function. However, I would like to point you to our command line application "storescp" which already has an option "--sort-conc-studies"...
by Thomas Wilkens
Thu, 2005-10-20, 06:25
Forum: DCMTK - General
Topic: Stuck storescu's
Replies: 7
Views: 8848

Ok, I just wanted to make sure there is no memory leak in DCMTK's storescu. Thank you for your answer.
by Thomas Wilkens
Thu, 2005-10-20, 06:23
Forum: DCMTK - General
Topic: findscu with "order by"
Replies: 2
Views: 3600

Unfortunately for you, there is no such functionality in findscu.
by Thomas Wilkens
Wed, 2005-10-19, 06:31
Forum: DCMTK - General
Topic: Stuck storescu's
Replies: 7
Views: 8848

Have you considered using for example valgrind (on Linux) to find out if your code has some kind of memory problem? In other words, you might do some memory allocation and you maybe have forgotten to free this memory again after it is used. After running for a long time, the machine might simply run...
by Thomas Wilkens
Wed, 2005-10-19, 06:23
Forum: DCMTK - General
Topic: storescp and AETITLE
Replies: 1
Views: 3203

The default AETitle storescp uses internally is STORESCP. For setting storescp's AETitle, use the following option (excerpt from storescp.man in dcmnet/docs):

Code: Select all

  -aet  --aetitle  aetitle: string
          set my AE title (default: STORESCP)
by Thomas Wilkens
Tue, 2005-10-18, 06:28
Forum: DCMTK - General
Topic: DCMTK and Java
Replies: 6
Views: 11483

1.- Re-design the client and code it in dcmtk. In that case, is there any c++ GUI freeware?. Because Qt is not. You could use MFC (Microsoft Foundation Classes), those come with Visual C++ 6.0. But I won't recommend these classes. If you are using .NET, there should also be corresponding classes. T...
by Thomas Wilkens
Mon, 2005-10-17, 10:38
Forum: DCMTK - General
Topic: DCMTK and Java
Replies: 6
Views: 11483

If I was in your shoes, I would avoid Java and code the client directly in C++. In case you need a handy C++ class library including GUI-classes, we can recommend Qt from TrollTech, see http://www.trolltech.com/ (unfortunately no freeware). We have been using Qt and DCMTK in several GUI-applications...
by Thomas Wilkens
Thu, 2005-10-13, 06:42
Forum: DCMTK - General
Topic: DCMTK conflict with PACS system?
Replies: 1
Views: 3546

Regarding storage commitment, please note that this DICOM service is totally independent from the DICOM storage service. In other words, there is no such thing as a storage commitment request in C-Store messages. The DICOM storage service is only meant to transmit DICOM objects over a network connec...
by Thomas Wilkens
Wed, 2005-10-12, 06:26
Forum: DCMTK - General
Topic: DcmFileFormat tell if file opened is image vs DICOMDIR
Replies: 4
Views: 5160

... which should equal "1.2.840.10008.1.3.10" (Media Storage Directory Storage). But please beware of the fact that some very old DICOM files might not contain a meta information header, which was introduced only in 1995.
by Thomas Wilkens
Tue, 2005-10-11, 06:23
Forum: DCMTK - General
Topic: How to get the Raw image from DcmDataSet
Replies: 3
Views: 6303

Check out this link, there is an example that shows you how to do it. Please also note FAQ #24.

Refer to http://support.dcmtk.org/ for DCMTK's complete online documentation.