Search found 11 matches

by snie
Sat, 2007-03-24, 04:06
Forum: DCMTK - General
Topic: Will I have memory leak problem?
Replies: 1
Views: 3072

Will I have memory leak problem?

I define a class CTest class CTest { public: DcmDataset *dataset; DcmFileFormat fileformat; CTest() { dataset = fileformat.getDataset(); } ~CTest() { delete dataset; //free memory at heap associated to this pointer } }; and in main function, I delare main() { CTest *test = new CTest; //adding other ...
by snie
Thu, 2007-03-15, 10:05
Forum: DCMTK - General
Topic: how to put two images/frames into one dicom image
Replies: 5
Views: 7442

Thank you very much. I really appreciate it. I am reading Parts 3, 5, 6 now. You answers help me a lot in underdtanding those long documents. From your answer, it indicates that 1) If I want to annote an image, I should annotate it based on dicom image using some dicom software. 2) Even I independen...
by snie
Wed, 2007-03-14, 03:12
Forum: DCMTK - General
Topic: how to put two images/frames into one dicom image
Replies: 5
Views: 7442

As for Compression Rate, Do you mean #define DCM_LossyImageCompressionRatio DcmTagKey(0x0028, 0x2112) Also, you have defined a lot of (whole) attributes in dcdeftag.h, where to find the corresponding possible values which assign to those tags? On the other hand, you have defined all UIDs in dcuid.h,...
by snie
Tue, 2007-03-13, 22:46
Forum: DCMTK - General
Topic: Why showing same tag two times
Replies: 3
Views: 4319

Have to include tag 0002,0013?

I see, thanks a lot, As for 0002,0013,Implementation Version Name=OFFIS.DCMTK.354 Does OFFIS.DCMTK.354 here mean that we use our DCMTK3.5.4 toolkits for software development and we will always have this information inside the dicom header, or can not move it? I know some other dicom images I downloa...
by snie
Tue, 2007-03-13, 04:56
Forum: DCMTK - General
Topic: Why showing same tag two times
Replies: 3
Views: 4319

Why showing same tag two times

Hi, there: I use the following command inside my code when converting a RGB image to a dicom image. dataset->putAndInsertString(DCM_ImplementationVersionName,"test version"); And when read the header information by using ezDICOM, it shows same tag two times with different value. 0002,0013,...
by snie
Tue, 2007-03-13, 02:19
Forum: DCMTK - General
Topic: how to put two images/frames into one dicom image
Replies: 5
Views: 7442

how to put two images/frames into one dicom image

Hello, My fellow DCMTK developers: I have some question on DCMTK and wish I can get some answers from you. First of all, I am able to load a RGB image and convert and save it to dicom image at my local disk by using dataset->putAndInsertUint8Array(DCM_PixelData, pixelData, pixelLength); OFCondition ...
by snie
Thu, 2007-02-22, 20:25
Forum: DCMTK - General
Topic: change RGB ordering to BGR in Dicom image
Replies: 1
Views: 3085

change RGB ordering to BGR in Dicom image

Does anyone know how to change the dicom image pixel data format from RGB ordering to BGR and save the image to a file?

Thanks,

David
________
New Jersey Medical Marijuana Dispensary
________
Honda nsr500v history
by snie
Sun, 2007-02-11, 04:13
Forum: DCMTK - Installation
Topic: A question about error Link2005(MSDV)
Replies: 21
Views: 45608

Email me your zip package or tell me where to download

I am interested in your solution, can you email me your zip package or tell me where to download?

my email: sixiang@hawaii.edu
Thanks,

DV
________
Starcraft Ii Replay
________
OM611 ENGINE
by snie
Tue, 2007-02-06, 00:30
Forum: DCMTK - General
Topic: source code
Replies: 1
Views: 2843

source code

Can somebody provide/tell me where to get some sample test code for DICOM prgramming using DCMTK
________
Medical Cannabis
________
NEVADA MEDICAL MARIJUANA DISPENSARY
by snie
Fri, 2007-02-02, 02:30
Forum: DCMTK - General
Topic: Converting 16-bit tiff RGB image to Dicom
Replies: 1
Views: 3180

What I means is 16 bit at each channel of the RGB image, not the total bits of a pixel.
________
1000
________
E12
by snie
Thu, 2007-02-01, 07:53
Forum: DCMTK - General
Topic: Converting 16-bit tiff RGB image to Dicom
Replies: 1
Views: 3180

Converting 16-bit tiff RGB image to Dicom

Does anyone done something related to convert 16-bits RGB tiff image to Dicom by DCMTK? I tried to convert my 16-bit tiff image by MATLAB and view it by ezDICOM, the image is too dark and lost all color. Any advice? Is there any way to add the dicom header within the tiff image so that it works like...