imageinfo
Image Information tool
Syntax
Description
Use the imageinfo
function to create an Image Information
tool. The tool displays information about the basic attributes and metadata of the
target image in a separate figure.
imageinfo
creates an Image Information tool associated with
the image in the current figure. The tool displays information about the basic
attributes of the target image in a separate figure.
imageinfo(
creates an Image
Information tool associated with h
)h
, where
h
is a handle to a figure, axes, or image object.
imageinfo(
creates an Image
Information tool containing image metadata from the graphics file
filename
)filename
. The image does not have to be displayed in a
figure window.
imageinfo(
creates an Image
Information tool containing the image metadata in the structure
info
)info
.
returns a handle to the Image Information tool figure.htool
= imageinfo(___)
Examples
Input Arguments
Output Arguments
Tips
The table lists the basic image attribute information included in the Image Information tool display. Note that the tool contains either four or six fields, depending on the type of image.
Attribute Name
Value
Width (columns)
Number of columns in the image
Height (rows)
Number of rows in the image
Class
Data type used by the image, such as
'uint8'
.Note
For
single
orint16
images,imageinfo
returns a'Class'
value of'double'
, because the image object converts theCData
of these images todouble
.Image type
One of the image types identified by the Image Processing Toolbox™ software:
'intensity'
'truecolor'
,'binary'
, or'indexed'
.Minimum intensity or index
For grayscale images, this value represents the lowest intensity value of any pixel.
For indexed images, this value represents the lowest index value into a colormap.
This field is not included for
'binary'
or'truecolor'
images.Maximum intensity or index
For grayscale images, this value represents the highest intensity value of any pixel.
For indexed images, this value represents the highest index value into a colormap.
This field is not included for
'binary'
or'truecolor'
images.imageinfo
gets information about image attributes by querying the image object'sCData
. The image object converts theCData
forsingle
orint16
images to classdouble
. In these cases,imageinfo(H)
displays a'Class'
attribute of'double'
, even though the image is of classsingle
orint16
. For example,h = imshow(ones(10,'int16')); class(get(h,'CData'))
Version History
Introduced before R2006a
See Also
Image Viewer | dicominfo
| imattributes
| imfinfo
| imformats
| nitfinfo