This is an archive of the old MediaWiki-based ImageJ wiki. The current website can be found at imagej.net.
DICOM
Formats | |
---|---|
Bio-Formats | |
Video formats | |
QuickTime | |
TIFF | |
DICOM | |
Zeiss LSM | |
Olympus VSI | |
Opera Flex | |
All I/O plugins |
Digital Imaging and Communications in Medicine (DICOM) is a standard for handling, storing, printing, and transmitting information in medical imaging.
Contents
How to read DICOM files into ImageJ?
- ImageJ has built-in support for reading some kinds of DICOM files. Try File › Open and see how it goes.
- The Bio-Formats plugin supports some kinds of DICOM files, too. Bio-Formats is available in the Fiji distribution of ImageJ. Try File › Import › Bio-Formats.
- The Tudor Dicom Tools plugin suite can read and write many kinds of DICOM, and provide some support for working with DICOM metadata structures.
How to save DICOM files from ImageJ?
The Tudor Dicom Tools provide basic support for saving as DICOM.
How to work with DICOM headers from a script?
An example of using the DicomTools.getTag()
method from JavaScript:
importClass(Packages.ij.IJ) importClass(Packages.ij.util.DicomTools) imp = IJ.openImage("http://wsr.imagej.net/images/ct.dcm.zip"); studyDescription = DicomTools.getTag(imp, "0008,1030"); imagePosition = DicomTools.getTag(imp, "0020,0032"); pixelSpacing = DicomTools.getTag(imp, "0028,0030"); print("Study Description: "+ studyDescription); print("Image Position: "+imagePosition); print("Pixel Spacing: "+ pixelSpacing);
How to work with DICOM headers from a macro?
See these macro functions:
An example using getInfo()
:
open("http://wsr.imagej.net/images/ct.dcm.zip"); studyDescription = getInfo("0008,1030"); imagePosition = getInfo("0020,0032"); pixelSpacing = getInfo("0028,0030"); print("Study Description: "+ studyDescription); print("Image Position: "+imagePosition); print("Pixel Spacing: "+ pixelSpacing);
See also these past threads from the ImageJ mailing list:
- 2015-09-23 - Reading DICOM header without opening the image
- 2013-10-10 - ImageJ DICOM Header
- 2013-05-30 - Dicom Header
- 2012-05-09 - Running a Macro in a plugin, retrieving DICOM header information automatically
- 2012-04-19 - Accessing a DICOM header
- 2012-04-13 - Query Dicom Header