Search found 5 matches

by zeinsalah
Sun, 2016-11-06, 09:24
Forum: DCMTK - General
Topic: splitting a multiframe dicom into single slice dicom
Replies: 1
Views: 4863

splitting a multiframe dicom into single slice dicom

Hi, I am tryig to writ a function to splitt and rewrite multiframe dicoms into a set of single frame dicom files. I relied on the code in this "howto": http://support.dcmtk.org/redmine/projects/dcmtk/wiki/Howto_Multiframe DicomImage *image = new DicomImage(mfFileName.toAscii().data(), CIF_...
by zeinsalah
Fri, 2016-07-08, 09:26
Forum: DCMTK - General
Topic: Readind data from Dicom
Replies: 2
Views: 2776

Readind data from Dicom

Sorry if this a silly question! I am wondering if the "loadFile()" function loads the whole data dicom file or just the header. In other words, does a code like this OFCondition cond = fileformat.loadFile("filename"); DcmDataset* dataset = fileformat.getDataset(); if (dataset->fi...
by zeinsalah
Sat, 2016-07-02, 11:52
Forum: DCMTK - General
Topic: Getting all occurencies of a dicom tag in a multiframe dicom
Replies: 2
Views: 2979

Getting all occurencies of a dicom tag in a multiframe dicom

Hi, considering a multiframe dicom, 1. Is it allowed for slices to have different slices distancies? i.e., is it allowed that sliced are not uniformly distanced? 2. Is it possible to search and get all occurrences of the DCM_ImagePositionPatient from the multiframe dicom? i.e. positions of all slice...
by zeinsalah
Wed, 2016-06-29, 14:22
Forum: DCMTK - General
Topic: Checking for existense of tags in a multi-frame dicom set
Replies: 3
Views: 4150

Re: Checking for existense of tags in a multi-frame dicom se

Thank you!

Both answers were helpfull.
by zeinsalah
Mon, 2016-06-27, 13:16
Forum: DCMTK - General
Topic: Checking for existense of tags in a multi-frame dicom set
Replies: 3
Views: 4150

Checking for existense of tags in a multi-frame dicom set

Hello, I am actually not an expert and this is my first topic in the forum, so pleas forgive me if the question is silly. I was using a call like if (dataset->findAndGetOFStringArray(tag, value).good()) to check if a specific tag is existing in a dataset. This was working fine for single-frage dicom...