| Image Processing Toolbox™ | ![]() |
info = analyze75info(filename)
info = analyze75info(filename,'ByteOrder', endian)
info = analyze75info(filename) reads the header file of the Analyze 7.5 data set specified by the string filename. The function returns info, a structure whose fields contain information about the data set.
Analyze 7.5 is a 3-D biomedical image visualization and analysis product developed by the Biomedical Imaging Resource of the Mayo Clinic. An Analyze 7.5 data set is made of two files, a header file and an image file. The files have the same name with different file extensions. The header file has the file extension .hdr and the image file has the file extension .img. For more information about Analyze 7.5 format metadata returned in info, see the Mayo Clinic Web site.
info = analyze75info(filename,'ByteOrder', endian) reads the Analyze 7.5 header file using the byte ordering specified by endian, where endian can have either of the following values:
Value | Meaning |
|---|---|
'ieee-le' | Byte ordering is Little Endian |
'ieee-be' | Byte ordering is Big Endian |
If the specified endian value results in a read error, analyze75info issues a warning message and attempts to read the header file with the opposite ByteOrder format.
Read an Analyze 7.5 header file. The file used in the example can be downloaded from http://www.radiology.uiowa.edu/downloads/.
info = analyze75info('CT_HAND.hdr');Specify the byte ordering of the data set.
info = analyze75info('CT_HAND', 'ByteOrder', 'ieee-be');![]() | adapthisteq | analyze75read | ![]() |
| © 1984-2008- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |