Search found 5 matches

by paperini
Thu, 2024-04-18, 15:27
Forum: Other DICOM Tools
Topic: MPR reconstruction of ultrasound data in Dicom viewers
Replies: 1
Views: 907

MPR reconstruction of ultrasound data in Dicom viewers

Hi, I have a question about the 3D Ultrasound Solutions in Dicom (https://dicom.nema.org/medical/dicom/current/output/chtml/part17/sect_PP.3.html) Are you aware of Dicom Viewers that support the Multi-Planar Reconstruction of an Enhanced US Volume SOP Class? In the standard it is written that “The 3...
by paperini
Wed, 2024-03-20, 18:09
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: 705

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

Hi, yes, dcmEnableUnknownVRConversion.set(OFTrue) is called. I will investigate further, in the meantime in case of LittleEndianImplicit transfer syntax, I will parse the private tag value as binary. Instead in case of LittleEndianExplicit I can use findAndGetXXX(), it works just fine. I don't know ...
by paperini
Tue, 2024-03-19, 16:12
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: 705

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

You are right, I called print() in my program on the DcmFileFormat and it is not working correctly for the private tag (it displays ?? as VR and binary values for the value) I don't know why the new tag that is added in the dictionary is not used. I thought that if I call: const DcmDataDictionary &a...
by paperini
Tue, 2024-03-19, 12:37
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: 705

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

Hi J. Riesmeier, Thanks a lot for your answer, now I understand what it is written in the standard about the possible conflicts of the private tags! About the problem in using the dictionary in the code, I tried with an external dictionary, as you suggested, but I have the same result as before. If ...
by paperini
Mon, 2024-03-18, 17:44
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: 705

Problem in parsing the string value of a private tag with dcmtk when the transfer syntax is LittleEndianImplicit (even i

Hi! I use dcmtk version 3.6.7 under Windows to write an application that creates a Dicom file (MultiframeGrayscaleByteSecondaryCaptureImageStorage), put some private tags in it and send it to Pacs (Conquest 1.5.0 ), then I retrieve the dataset from the Pacs with a C-MOVE and would like to read it, a...