Search found 6 matches

by qs5d
Fri, 2005-06-03, 18:34
Forum: DCMTK - General
Topic: read all the dicom files in a directory?
Replies: 7
Views: 9846

read multiple dicom files in the dir and write to one file

Maybe I didn't express my idea clearly in the previous question. Now I have several hundred of dicom files under a directory, those files are randomly named. I need to read those randomly named dicom files into one file with only pixel data in order to create a 3d volume of raw image. This 3d volume...
by qs5d
Wed, 2005-06-01, 19:30
Forum: DCMTK - General
Topic: read all the dicom files in a directory?
Replies: 7
Views: 9846

read all the dicom files in a directory?

Does DCMTK provide some method to read all the dicom files under the same directory and write into one file? Thank you.
by qs5d
Tue, 2005-05-31, 16:57
Forum: DCMTK - General
Topic: dcmGenerateUniqueIdentifier
Replies: 1
Views: 4577

dcmGenerateUniqueIdentifier

I want to change the sop instance Uid, I found the following example. I searched the classes, I couldn't find things like dcmGenerateUniqueIdentifier, could you please tell me how to use it? What is the uid and how to define it? Thank you. dataset->putAndInsertString(DCM_SOPInstanceUID, dcmGenerateU...
by qs5d
Tue, 2005-05-24, 20:25
Forum: DCMTK - General
Topic: findAndGetUint16
Replies: 2
Views: 4675

findAndGetUint16

I want to change the value of DCM_InstanceNumber, ie. the number of the image by using the following:
Uint16 value;
findAndGetUint16 (Dcm_InstanceNumber, value);

But I couldn't get the value I want. Could you please give me an example? Thank you.
by qs5d
Thu, 2005-05-19, 17:53
Forum: DCMTK - General
Topic: Does DCMTK has any requirements on settings of the system?
Replies: 1
Views: 3349

Does DCMTK has any requirements on settings of the system?

I developed an upper level application program based on DCMTK in .net 2003. I made my program to be one of the projects under one of the apps dir of DCMTK. It successfully built and linked and executed. I got the output images. On another machine with the same operating system, window XP and same ve...
by qs5d
Wed, 2005-05-11, 16:03
Forum: DCMTK - General
Topic: how to write the pixal data back to DCMImage object?
Replies: 1
Views: 3721

how to write the pixal data back to DCMImage object?

I want to get the pure image data (no header information at all) from a dicom image, then do some image processing work, then write the image data back to dicom format. First, I created a DCMFileformat object, then I get the dataset, from the dataset I get the DicomImage, then I use the following to...