|
Re: Philips ACRA-NEMA reader [message #18188 is a reply to message #18187] |
Tue, 14 December 1999 00:00  |
Liam Gumley
Messages: 473 Registered: November 1994
|
Senior Member |
|
|
Scott Reid wrote:
> Does anyone happen to have a piece of code written in IDL to open
> Philips MRI acra-nema files, which will also read the header file as
> well. If so, I would be extremely grateful.
Scott,
According to the IDL 5.2 documentation, version 3.0 of the ACR-NEMA
standard is known as the Digital Imaging and Communications in Medicine
(DICOM) format. IDL 5.2 includes an object-oriented API to read the
DICOM format. Check the online help:
IDL> ? dicom
An example DICOM file is included in the IDL 5.2 example datasets:
IDL> file = filepath('mr_knee.dcm', subdir='examples/data')
IDL> image = read_dicom(file)
IDL> tvscl, image
Cheers,
Liam.
--
Liam E. Gumley
Space Science and Engineering Center, UW-Madison
http://cimss.ssec.wisc.edu/~gumley
|
|
|