Search found 5 matches

by todor_petkov
Mon, 2006-01-16, 17:25
Forum: DCMTK - General
Topic: Error - Odd attribute Lenght
Replies: 5
Views: 5965

Hi Marco, I have run the file through dcmdump and it seams there are no problems with it, a part form a number of UNDEFINED Elements... But have found the following strange ( I include some source code ) : +++++++++++++++++++++++++++++++++++++++++++++++ DcmFileFormat dfile; dfile.loadFile ( dir_entr...
by todor_petkov
Tue, 2006-01-10, 16:16
Forum: DCMTK - General
Topic: Error - Odd attribute Lenght
Replies: 5
Views: 5965

Error - Odd attribute Lenght

Hello, I have been using DCMTK 3.5.3 to load LUNG CT images. When DCMTK 3.5.4 came out I decided to switch to the new version and now I get the following errors trying to load 16bit/pixel LUNG CT from file: 1.DcmItem: Length of attribute (717d,2801) is odd 2.DcmElement: Unknown Tag & Data(717d,2...
by todor_petkov
Thu, 2005-02-24, 18:36
Forum: DCMTK - General
Topic: DicomImage Object destruction
Replies: 2
Views: 6073

Ok, it worked!!!!!!!!
Thanks a lot...

Todor
by todor_petkov
Thu, 2005-02-24, 15:30
Forum: DCMTK - General
Topic: DicomImage Object destruction
Replies: 2
Views: 6073

DicomImage Object destruction

Hello, I have a question about memory management in DCMTK. In the code that follows I am trying to load a series of dicom images from a directory and store them in a single 3d array... /********************/ Here is var declaration: DicomImage *di; DcmFileFormat dfile; DcmDataset *dataset; /********...
by todor_petkov
Wed, 2005-01-26, 09:32
Forum: DCMTK - General
Topic: Reading (Group / Element) that should contain multiple values
Replies: 1
Views: 4730

Reading (Group / Element) that should contain multiple values

Hello, I was wandering how to access the CT Pixel Spacing through DcmDataset. What I did for single valued tags was for example : /***********************************************/ /* for slice thickness */ DcmTagKey *tag = new DcmTagKey(); double slice_thickness = 0.0; tag->setGroup(0x0018); tag->se...