Description Usage Arguments Author(s) References See Also Examples
All information, both header and image, is read into a list structure from a DICOM file.
1 | dicom.info(fname, endian="little", flipud=TRUE)
|
fname |
File name |
endian |
Binary encoding; default is |
flipud |
Flip image vertically; default is |
Brandon Whitcher
Digital Imaging and Communications in Medicine (DICOM)
http://medical.nema.org
http://en.wikipedia.org/wiki/Digital_Imaging_and_Communications_in_Medicine
1 2 3 4 5 | x <- dicom.info(system.file("dcm/Abdo.dcm", package="DICOM")[1])
image(x$img, col=grey(0:127/128), axes=FALSE, xlab="", ylab="")
x <- dicom.info(system.file("dcm/Spine1.dcm", package="DICOM")[1])
image(x$img, col=grey(0:127/128), axes=FALSE, xlab="", ylab="")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.