Search found 22 matches

by ilia71
Mon, 2018-01-08, 10:18
Forum: DCMTK - General
Topic: RLE Palette color decompression
Replies: 2
Views: 2482

Re: RLE Palette color decompression

Thank you!
It helped alot
by ilia71
Thu, 2018-01-04, 15:27
Forum: DCMTK - General
Topic: RLE Palette color decompression
Replies: 2
Views: 2482

RLE Palette color decompression

Hello all,

In my code, i used DicomImage class to decompress RLE Palette color encoded Pixel data.
The problem is that by doing DicomImage(dataSet, transferSyn) i extract the entire Pixel data.
Is there any other way to extract it frame by frame in RLE Palette color representation?

Thank you,
Ilia
by ilia71
Thu, 2017-09-14, 08:25
Forum: DCMTK - General
Topic: How to create a new Dicom file
Replies: 1
Views: 2429

How to create a new Dicom file

Hello all, Can anyone please help me with the following issue: I need to take existing multiframe DICOM files, add additional text and drawings on pictures, and create new multiframe DICOM with the same metainfo as the original existing DICOM. In C++, I didn’t find any good example of how to write m...
by ilia71
Wed, 2017-03-22, 16:10
Forum: DCMTK - General
Topic: dcmtk for x64 bit processor
Replies: 12
Views: 10624

Re: dcmtk for x64 bit processor

I will try. Thank you
by ilia71
Wed, 2017-03-22, 15:58
Forum: DCMTK - General
Topic: dcmtk for x64 bit processor
Replies: 12
Views: 10624

Re: dcmtk for x64 bit processor

Yes. I used Dcmtk 3.6.0
by ilia71
Wed, 2017-03-22, 15:53
Forum: DCMTK - General
Topic: dcmtk for x64 bit processor
Replies: 12
Views: 10624

Re: dcmtk for x64 bit processor

Yes
by ilia71
Wed, 2017-03-22, 15:44
Forum: DCMTK - General
Topic: dcmtk for x64 bit processor
Replies: 12
Views: 10624

Re: dcmtk for x64 bit processor

I used CMAKE to build the project for windows OP.
Afterwards i noticed that the output binaries are only for x32 system
by ilia71
Wed, 2017-03-22, 13:32
Forum: DCMTK - General
Topic: dcmtk for x64 bit processor
Replies: 12
Views: 10624

dcmtk for x64 bit processor

Hello All,

How can i build this project for x64 OP ?

Thank you,
by ilia71
Mon, 2017-01-30, 14:02
Forum: DCMTK - General
Topic: Log4cpp in Quiete mode
Replies: 2
Views: 2732

Re: Log4cpp in Quiete mode

Thank you!
by ilia71
Sun, 2017-01-22, 11:19
Forum: DCMTK - General
Topic: Log4cpp in Quiete mode
Replies: 2
Views: 2732

Log4cpp in Quiete mode

Hi,

Is there any way how i can (manually) control the output to the console?
Mainly important in Release configuration.

Thanks.
by ilia71
Thu, 2016-12-01, 10:09
Forum: DCMTK - General
Topic: Unsupported value for 'PhotometricInterpretation'
Replies: 18
Views: 20596

Re: Unsupported value for 'PhotometricInterpretation'

Thank you!
Your answers helped me a lot :)
by ilia71
Wed, 2016-11-30, 11:43
Forum: DCMTK - General
Topic: Unsupported value for 'PhotometricInterpretation'
Replies: 18
Views: 20596

Re: Unsupported value for 'PhotometricInterpretation'

Thank you it worked! But this method, unlike initiation of DicomImage instance, does not handle cases when the PhotometricInterpretation is palette color. i.e. pixelElement->getUncompressedFrame(..) returns pixel data containing inputs for the color lookup tables. Is there any way to overcome this i...
by ilia71
Thu, 2016-11-24, 15:13
Forum: DCMTK - General
Topic: Unsupported value for 'PhotometricInterpretation'
Replies: 18
Views: 20596

Re: Unsupported value for 'PhotometricInterpretation'

Hi, Just one more thing. After i decompressed the data set using: dataSet->chooseRepresentation(EXS_LittleEndianExplicit, NULL); how can i extract a single frame (without initializing an instance of DicomImag, which is not so efficient considering the fact i need only the first frame while the entir...
by ilia71
Wed, 2016-11-23, 17:55
Forum: DCMTK - General
Topic: Unsupported value for 'PhotometricInterpretation'
Replies: 18
Views: 20596

Re: Unsupported value for 'PhotometricInterpretation'

Worked great! thank you
by ilia71
Wed, 2016-11-09, 08:15
Forum: DCMTK - General
Topic: Unsupported value for 'PhotometricInterpretation'
Replies: 18
Views: 20596

Re: Unsupported value for 'PhotometricInterpretation'

Hi, I have a small question regarding data extraction from the dataset (of a type DcmDataSet*). In my code i was using the following two lines: dataSet->findAndGetUint32(DCM_RegionLocationMinX0, oMetaInfo.RegMinX0); dataSet->findAndGetUint16(DCM_SamplesPerPixel, oMetaInfo.SamplesPerPixel); While the...