Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

DICOM basics for volumetric data

Tags:

medical

dicom

I have looked at some of the DICOM standard and the Wikipedia page (and all DICOM topics on SO) but without really digging into the file structure doc (ugh), I'm left confused what exactly is stored inside a DICOM file for a scan comprising 3D/4D/5D data. I only want an overview.

Let's take MRI as an example. Does the DICOM file contain

  1. a set of the raw 2D images taken from various angles
  2. a stack of slices forming a 3D voxel dataset
  3. a full 3D dataset

In other words, does DICOM include any post-processing on the raw images captured by the imaging machine?

As far as 4D, presumably it's simply a collection of multiple 3D datasets, each 'frame' is a separate dataset?

like image 336
Mr. Boy Avatar asked Dec 13 '10 17:12

Mr. Boy


1 Answers

The DICOM "standard" has so many different options in it, along with vendor extensions, that most things are possible.

That said, most 3D DICOM datasets that I have encountered are 2D image stacks. For post-processing, it depends solely on the imaging machine.

If you're looking for a freely available DICOM library, you can try out GDCM, I've been fairly happy with it.

like image 90
tkerwin Avatar answered Oct 01 '22 13:10

tkerwin