Search found 26 matches

by retarder
Fri, 2014-07-25, 11:27
Forum: DCMTK - General
Topic: Loading DICOM files with unicode filenames on Windows
Replies: 20
Views: 34933

Re: Loading DICOM files with unicode filenames on Windows

I did that and copied the dcmjp2k from 3.6.0 sources to the snapshot folder, but there is no folder dcmjp2k created by CMake in the build folder.
by retarder
Thu, 2014-07-24, 17:19
Forum: DCMTK - General
Topic: Loading DICOM files with unicode filenames on Windows
Replies: 20
Views: 34933

Re: Loading DICOM files with unicode filenames on Windows

Yes, we are using 3.6.0. Can you tell me the minimal changes please?

I looked at CMakeLists.txt and saw the lines

Code: Select all

# Add non-public modules
SET(DCMTK_MODULES ${DCMTK_MODULES} dcmjp2k)
but the CMakeLists.txt from the snapshot looks much different.
by retarder
Thu, 2014-07-24, 16:57
Forum: DCMTK - General
Topic: Loading DICOM files with unicode filenames on Windows
Replies: 20
Views: 34933

Re: Loading DICOM files with unicode filenames on Windows

Hi,
we want to use the snapshot with the DCMJP2K extension for which we have a license.
Is it at all possible?
by retarder
Mon, 2012-07-23, 09:34
Forum: DCMTK - General
Topic: writing files using JPEG 2000
Replies: 2
Views: 3666

Re: writing files using JPEG 2000

That was a misunderstanding. I don't wanted to write a DICOMDIR with JPEG2000 but only the single frame files which are referenced by the DIOCMDIR.

But you are right, I registered the decoders instead of the encoders accidentally, now it works like a charm!
by retarder
Fri, 2012-07-20, 16:54
Forum: DCMTK - General
Topic: writing files using JPEG 2000
Replies: 2
Views: 3666

writing files using JPEG 2000

Hi, we try to write DICOM datasets as DICOMDIR with JPEG2000 transfer syntax. But the canWriteXfer method returns already false. DcmItem *metaInfo = fileformat.getMetaInfo(); D2DecoderRegistration::registerCodecs(); // register JPEG2000 codecs DJ_RPLossless params; status = pDataset->chooseRepresent...
by retarder
Fri, 2012-05-25, 11:36
Forum: DCMTK - General
Topic: Adding a file-set tag to DICOMDIR
Replies: 1
Views: 2582

Adding a file-set tag to DICOMDIR

Hi, I want to add respectively change the tags "File-Set ID (0004,1130)" and "File-set Descriptor File ID (0004,1141)" described in PS 3.3 - 2011 F.3.2.1 to a DICOMDIR file, in which at the moment just the string "DCMTK_MEDIA_DEMO" is stored. But how can I access these ...
by retarder
Wed, 2012-02-01, 18:30
Forum: DCMTK - General
Topic: compress DICOMDIR file entries?
Replies: 8
Views: 8917

Sorry, I forgot to delete the first sentence.
So my question is if EnhancedCtImageStorage e.g. is not applicable to AP_CTandMR, because this SOP UID is not mentioned in P11?
by retarder
Wed, 2012-02-01, 10:02
Forum: DCMTK - General
Topic: create multiple sequence items with same tag
Replies: 2
Views: 4208

You are right, the PlanePositionSequence was only a typo and the for-loop was at the wrong position.

Thanks.
by retarder
Wed, 2012-02-01, 09:49
Forum: DCMTK - General
Topic: compress DICOMDIR file entries?
Replies: 8
Views: 8917

That means that is it not possible to store compressed multiframe files with the Secondary Capture Image Storage SOP? So, I am confused about the supported SOP class UIDs, because MultiframeGrayscaleWordSecondaryCaptureImageStorage = "1.2.840.10008.5.1.4.1.1.7. 3 " looks like a sub class o...
by retarder
Tue, 2012-01-31, 18:02
Forum: DCMTK - General
Topic: create multiple sequence items with same tag
Replies: 2
Views: 4208

create multiple sequence items with same tag

Hi, I have a problem with creating multiple similar items in a sequence. I need to implement the P3, C.7.6.16.2.3 Plane Position (Patient) Macro, so I need one subsequence for each frame in the DCM_PerFrameFunctionalGroupsSequence. But I don't know how to add a new item (sequence) without overriding...
by retarder
Tue, 2012-01-31, 15:09
Forum: DCMTK - General
Topic: compress DICOMDIR file entries?
Replies: 8
Views: 8917

Hi, now I try to safe a DICOMDIR dataset with the IOD "Multi-frame Grayscale Word SC Image" with UID UID_MultiframeGrayscaleWordSecondaryCaptureImageStorage, but it fails again with "Storage media application profile violated". I use the values from table Table E.3-5 STD-CTMR Req...
by retarder
Tue, 2012-01-24, 12:59
Forum: DCMTK - General
Topic: compress DICOMDIR file entries?
Replies: 8
Views: 8917

Hi,
thanks for your answer.
Now I use AP_CTandMR and it works :D
by retarder
Mon, 2012-01-23, 18:12
Forum: DCMTK - General
Topic: compress DICOMDIR file entries?
Replies: 8
Views: 8917

compress DICOMDIR file entries?

Hi, is it possible to compress file entries in DICOMDIR datasets? I try to use it with for(;;) { ... dataset->putAndInsertUint8Array(DCM_PixelData, (const Uint8*)sliceDataArray, sliceSice*sizeof(unsigned short)); DcmItem *metaInfo = fileformat.getMetaInfo(); DJEncoderRegistration::registerCodecs(); ...
by retarder
Fri, 2012-01-20, 18:22
Forum: DCMTK - General
Topic: "Pixel representation not found" on compression
Replies: 9
Views: 10870

Ok, thanks for your answer.

But there is now way to compress and write the slices separately to avoid memory problems?
by retarder
Fri, 2012-01-20, 16:03
Forum: DCMTK - General
Topic: "Pixel representation not found" on compression
Replies: 9
Views: 10870

Hi,

the line:

Code: Select all

status = dataset->chooseRepresentation(EXS_JPEGProcess14SV1TransferSyntax, &params); 
returns "Virtual memory exhausted.