Search found 3 matches

by sundar
Fri, 2005-10-14, 12:55
Forum: DCMTK - General
Topic: Open_DICOM_image
Replies: 2
Views: 3882

try something like


DicomImage* m_image = NULL;
m_image = new DicomImage("c:\\test.dcm");

regards
sundar
________
Chevrolet Sequel
________
vapir oxygen
by sundar
Fri, 2005-10-14, 12:26
Forum: DCMTK - General
Topic: How to get the Raw image from DcmDataSet
Replies: 3
Views: 6303

Hi , I also tried like this to access the pixel data , but it fails. I am able to get the count properly but the pixelData shows 0 at the same time the array is also not NULL. DcmFileFormat fileformat; OFCondition status = fileformat.loadFile("image.dcm"); if (status.good()) { DcmDataset *...
by sundar
Mon, 2005-10-10, 12:39
Forum: DCMTK - General
Topic: How to get the Raw image from DcmDataSet
Replies: 3
Views: 6303

How to get the Raw image from DcmDataSet

Hi, I am new to OFFIS, i just tried to work with storescp (sample project). I would like to know how to retrieve the image part from the dataset. I tried in the procedure void storeSCPCallback( /* in */ void *callbackData, T_DIMSE_StoreProgress *progress, /* progress state */ T_DIMSE_C_StoreRQ *req,...