Search found 2512 matches

by J. Riesmeier
Fri, 2024-05-24, 12:48
Forum: DCMTK - General
Topic: ECG modality (scu) does not find records in wlmscpfs (scp) when they exist
Replies: 7
Views: 65

Re: ECG modality (scu) does not find records in wlmscpfs (scp) when they exist

When I compare some lines of the log output for the first (not working)... I: (0008,0060) CS [ECG] # 4, 1 Modality I: (0040,0001) AE [HPCHPSURG12E] # 12, 1 ScheduledStationAETitle I: (0040,0002) DA [20240523-20240524] # 18, 1 ScheduledProcedureStepStartDate I: (0040,0003) TM (no value available) # 0...
by J. Riesmeier
Fri, 2024-05-24, 09:14
Forum: DCMTK - General
Topic: Specific Character set issue
Replies: 4
Views: 47

Re: Specific Character set issue

The Specific Character Set that is used for a C-FIND response dataset is specified by the SCP, if this was the question. You could check in the DICOM Conformance Statement of the particular device which character sets are supported and how they are used.
by J. Riesmeier
Fri, 2024-05-24, 09:10
Forum: DCMTK - General
Topic: ECG modality (scu) does not find records in wlmscpfs (scp) when they exist
Replies: 7
Views: 65

Re: ECG modality (scu) does not find records in wlmscpfs (scp) when they exist

There is no problem with the Transfer Syntax, but there are simply no matches in your worklist "database" (see wlmscpfs's log output lines that end with "does not match query").
by J. Riesmeier
Tue, 2024-05-21, 08:54
Forum: DCMTK - General
Topic: dsr2html Too many parameters
Replies: 4
Views: 74

Re: dsr2html Too many parameters

Calling "dsr2html --no-document-header report.dcm report.html" works as expected, so maybe you did not use the correct character for "-" (should be the minus/hyphen) or provided more than two parameters (command line arguments not starting with "-" or "+").
by J. Riesmeier
Mon, 2024-05-20, 11:39
Forum: DCMTK - General
Topic: dsr2html Too many parameters
Replies: 4
Views: 74

Re: dsr2html Too many parameters

What does the command line look like, i.e. how do you call dsr2html (with all parameters and options)?
by J. Riesmeier
Sat, 2024-05-18, 21:00
Forum: DCMTK - Installation
Topic: Configuring DCMTK using CMake Utility
Replies: 7
Views: 255

Re: Configuring DCMTK using CMake Utility

it says" cmake error The source directory C:/ Program files/dcmtk toolkit/dcmtk-3.6.8-w64 dynamic bin does not appear to bcontain cmake lists.txt
It seems that you downloaded and extracted the binary package for Windows. Of course, you need the source code package of the DCMTK.
by J. Riesmeier
Thu, 2024-04-25, 19:34
Forum: DCMTK - General
Topic: Crash on shutdown of DcmQueryRetrieveSCP
Replies: 3
Views: 222

Re: Crash on shutdown of DcmQueryRetrieveSCP

Thank you for the feedback. We will do some more testing and then commit the required changes.
by J. Riesmeier
Wed, 2024-04-24, 21:25
Forum: DCMTK - General
Topic: Crash on shutdown of DcmQueryRetrieveSCP
Replies: 3
Views: 222

Re: Crash on shutdown of DcmQueryRetrieveSCP

Thank you for your report. I think the problem has been introduced with commit c34f4e46e6 . Here is a possible patch to fix this: diff --git a/dcmqrdb/libsrc/dcmqrsrv.cc b/dcmqrdb/libsrc/dcmqrsrv.cc index d9534238e..4c450c284 100644 --- a/dcmqrdb/libsrc/dcmqrsrv.cc +++ b/dcmqrdb/libsrc/dcmqrsrv.cc @...
by J. Riesmeier
Fri, 2024-04-19, 15:48
Forum: DCMRT
Topic: How to write contour sequence to DICOM file
Replies: 2
Views: 579

Re: How to write contour sequence to DICOM file

Mandatory data elements are missing. You should have checked the return value of structureSet.write() and also looked at the logger... Here is an improved version of your sample code: DRTStructureSetIOD structureSet; structureSet.setStudyInstanceUID("1.2.3.4"); structureSet.setSeriesInstan...
by J. Riesmeier
Mon, 2024-04-15, 17:37
Forum: DCMTK - General
Topic: How to save a single frame dicom
Replies: 3
Views: 345

Re: How to save a single frame dicom

Short comment from my side: Using the DicomImage class for extracting frames from a multi-frame image without losing information is certainly not the way to go. This is because the main purpose of this class is rendering images for display.
by J. Riesmeier
Mon, 2024-04-15, 13:44
Forum: DCMTK - General
Topic: UID's generated by DCMTK are DICOM-compliant ?
Replies: 6
Views: 1142

Re: UID's generated by DCMTK are DICOM-compliant ?

Nevertheless, we will apply for our own org root at DIN.
Another option would be to apply for an "OID" (same concept as UID) at BfArM.
by J. Riesmeier
Mon, 2024-03-25, 20:44
Forum: DCMTK - General
Topic: UID's generated by DCMTK are DICOM-compliant ?
Replies: 6
Views: 1142

Re: UID's generated by DCMTK are DICOM-compliant ?

I think I know this company. At least I had contact with a PACS company that claimed exactly the same thing. However, their statement is not correct (I even talked to the head of that company to clarify this). You can use the standard UID generation routine provided by the DCMTK, i.e. with the organ...
by J. Riesmeier
Tue, 2024-03-19, 13:24
Forum: DCMTK - General
Topic: Problem in parsing the string value of a private tag with dcmtk when the transfer syntax is LittleEndianImplicit (even i
Replies: 7
Views: 702

Re: Problem in parsing the string value of a private tag with dcmtk when the transfer syntax is LittleEndianImplicit (ev

The main difference between your program and dcmdump is probably that dcmdump uses the print() method while you are using the findAndGetXXX() methods.
That means, you should probably start with calling the print() method in your program and see whether VR and Value are printed correctly.
by J. Riesmeier
Tue, 2024-03-19, 10:33
Forum: DCMTK - General
Topic: Problem in parsing the string value of a private tag with dcmtk when the transfer syntax is LittleEndianImplicit (even i
Replies: 7
Views: 702

Re: Problem in parsing the string value of a private tag with dcmtk when the transfer syntax is LittleEndianImplicit (ev

The following question is more general about the private tags, I read that it is important that the private tags are relocatable to avoid conflict with other private tags: how can I make a relocatable private tags? Should I simply check in my dataset if another tag with the same (gggg, eeee) value ...