[Insight-developers] Re: [Insight-users] load a CT scan (DICOM)
Luis Ibanez
luis.ibanez@kitware.com
Mon, 16 Sep 2002 12:42:31 -0400
Hi Jim,
The MetaImage reader delegates the reading of every slice to the
Dicom reader (Insight/Code/IO/DicomImageIO).
Support for Dicom features is not built-in into the MetaImageIO
reader but into DicomImageIO.
The "intensity offset" is not implemented in the current reader.
If it is added that will be done in the DicomImageIO class.
Luis
================================================================
Miller, James V (Research) wrote:
> Can the MetaImage format handle the "intensity offset" that can be
> encoded in DICOM images?
>
> For instance, signed data with a known range that is stored as unsigned data
> (so you need to apply additive offset).
>
>
>
>
>
>>-----Original Message-----
>>From: Luis Ibanez [mailto:luis.ibanez@kitware.com]
>>Sent: Friday, September 13, 2002 5:09 PM
>>To: Miller, James V (Research)
>>Cc: Stephen R. Aylward; Insight-developers (E-mail)
>>Subject: Re: [Insight-developers] Re: [Insight-users] load a CT scan
>>(DICOM)
>>
>>
>>
>>Hi Jim,
>>
>>The MetaImage format just requires to create a header text file that
>>points to the original DICOM data. For example, I'm using the
>>following
>>MetaImage header file to read directly a set of Dicom files. No data
>>is duplicated in this approach.
>>
>> NDims = 3
>> DimSize = 512 512 41
>> Position = 0 0 0
>> ElementSpacing = 0.63281 0.63281 7.0
>> ElementByteOrderMSB = False
>> ElementType = MET_USHORT
>> HeaderSize = -1
>> ElementDataFile = image%04d.dcm 1 41 1
>>
>>
>>---(this header file is also attached to this message)----
>>
>>This reads the following files into a 3D image:
>>
>> image0001.dcm
>> image0002.dcm
>> image0003.dcm
>> image0004.dcm
>> ...etc
>> image0041.dcm
>>
>>The header file was created with the MetaImageImporter but it could
>>have been created by hand once you know the fields that are required.
>>
>>
>> Luis
>>
>