Search found 117 matches

by Thomas Wilkens
Tue, 2005-01-25, 08:28
Forum: DCMTK - General
Topic: DcmImage->GetOutPut in 16 bits
Replies: 1
Views: 5041

There is an example in DCMTK's documentation (file dcmimage/docs/dcmimage.dox): #include "diregist.h" /* required to support color images */ /* ... */ DicomImage *image = new DicomImage("test.dcm"); if (image != NULL) { if (image->getStatus() == EIS_Normal) { Uint8 *pixelData = (...
by Thomas Wilkens
Mon, 2005-01-24, 13:46
Forum: DCMTK - General
Topic: FINDSCU INFORMATION MODELS
Replies: 19
Views: 40401

In wlmscpfs.man you can see that the wlmscpfs application supports the following attributes as matching keys: (0008,0050) AccessionNumber (0008,0090) ReferringPhysiciansName (0010,0010) PatientsName (0010,0020) PatientID (0010,0040) PatientsSex (0032,1032) RequestingPhysician (0038,0010) AdmissionID...
by Thomas Wilkens
Wed, 2005-01-19, 12:43
Forum: DCMTK - FAQ
Topic: FAQ #39: Is there an SCP for the Modality Performed Procedure Step (MPPS) service in DCMTK?
Replies: 0
Views: 27453

FAQ #39: Is there an SCP for the Modality Performed Procedure Step (MPPS) service in DCMTK?

:?: Is there an SCP for the Modality Performed Procedure Step (MPPS) service in DCMTK? :!: We have implemented an MPPS SCP on the basis of DCMTK for one of our other projects. The application is, however, not part of the public part of DCMTK and, therefore, not available for free. More details can b...
by Thomas Wilkens
Wed, 2005-01-19, 12:31
Forum: DCMTK - FAQ
Topic: FAQ #38: How can I use findscu for a query with the query/retrieve service?
Replies: 0
Views: 40617

FAQ #38: How can I use findscu for a query with the query/retrieve service?

:?: How can I use findscu for a query with the query/retrieve service? :!: Here is an example: using findscu to query an image from a query/retrieve SCP using the patient root information model: findscu -v -P -k 0008,0052="IMAGE" -k 0010,0020="300019" -k 0020,000D="1.2.3.1&q...
by Thomas Wilkens
Wed, 2005-01-19, 08:34
Forum: DCMTK - General
Topic: findscu : what query information model should be used for IMAGE and SERIES Level query
Replies: 2
Views: 6898

You can use the patient root _or_ the study root information model to query on image or series level. Example: querying on image level with patient root model: findscu -v -P -k 0008,0052="IMAGE" -k 0010,0020="300019" -k 0020,000D="1.2.3.1" -k 0020,000E="1.2.3.2&quo...
by Thomas Wilkens
Wed, 2005-01-19, 07:49
Forum: DCMTK - Installation
Topic: Setting the SITE_UID_ROOT with CMake
Replies: 6
Views: 7860

Your suggestion is almost right. The following should work:

Code: Select all

ADD_DEFINITIONS(-DSITE_UID_ROOT=\\\"1.2.3.4.5\\\")
Insert this code in file dcmtk-3.5.3\CMakeLists.txt at the line you indicated.
by Thomas Wilkens
Tue, 2005-01-11, 07:50
Forum: DCMTK - General
Topic: troubles with movescu
Replies: 3
Views: 7675

First of all, you obviously forgot to specify a port number the SCP you are communicating to is listening on. Also note that in case you dont want movescu to be the move destination, you can use the option -aem to specify a different move destination (= a destination the files are sent to). In case ...
by Thomas Wilkens
Mon, 2005-01-10, 08:01
Forum: DCMTK - General
Topic: Handling of DIMSE_N_CREATE_RQ messages
Replies: 3
Views: 7494

In PS 3.4 Annex F.7 ff., the MPPS service is explained in detail. Make sure you have read and understood that part of the standard before you go and implement an application. The implementation is not that difficult, and starting by modifying wlmscpfs is a very good idea, but it is necessary that yo...
by Thomas Wilkens
Wed, 2005-01-05, 08:25
Forum: DCMTK - General
Topic: running imagectn
Replies: 5
Views: 8610

Are you sure the error message is "error: Too many parameters" and not "error: Unknown option -s"? Under Windows, there should not be any option -s, this option should only be available on OS Systems (like Linux) that support the "fork(...)" system routine which (in the...
by Thomas Wilkens
Mon, 2004-12-20, 09:14
Forum: DCMTK - General
Topic: about worklist
Replies: 3
Views: 8251

I don't quite understand what you are trying to tell me. I suggest that you read about the DICOM query retrieve service class (Annex C in part 4 of the standard) and about the DICOM worklist management service class (Annex K in part 4 of the standard). This should make it clear that these things are...
by Thomas Wilkens
Thu, 2004-12-16, 15:33
Forum: DCMTK - FAQ
Topic: FAQ #37: How does wlmscpfs (DCMTK's DICOM Worklist Management SCP) work?
Replies: 0
Views: 53594

FAQ #37: How does wlmscpfs (DCMTK's DICOM Worklist Management SCP) work?

:?: How does wlmscpfs (DCMTK's DICOM Worklist Management SCP) work? :!: The wlmscpfs application in DCMTK (version 3.5.2 or newer) implements a DICOM worklist management SCP. The application replaces the former wlistctn application which may be used analogously but which has some deficiencies in com...
by Thomas Wilkens
Thu, 2004-12-16, 09:13
Forum: DCMTK - General
Topic: about worklist
Replies: 3
Views: 8251

Joyli, it is correct that wlmscpfs implements the DICOM worklist management service as a service class provider (SCP) (=server). For this purpose, the application supports receiving and sending C-Find messages. As an SCP, the application also supports receiving and sending C-Echo messages, which bel...