Image Viewer
View and explore images
Description
The Image Viewer app presents an integrated environment for displaying images and performing common image processing tasks.
Image Viewer provides all the image display capabilities of imshow
, which optimizes figure, axes, and image object property settings
for image display. Image Viewer also provides access to several tools for
navigating and exploring images, such as the Pixel Region tool, Image Information tool,
and the Adjust Contrast tool. To learn more about the available tools, see Get Started with Image Viewer App.
Open the Image Viewer App
MATLAB® Toolstrip: On the Apps tab, under Image Processing and Computer Vision, click the Image Viewer app icon.
MATLAB command prompt: Use the
imtool
function.
Examples
Related Examples
Programmatic Use
More About
Tips
If you want to set the display range when calling
imtool
, then the"DisplayRange"
name is optional unless you specify the image using a file name. The syntaximtool(I,[low high])
is equivalent toimtool(I,"DisplayRange",[low high])
. However, you must specify the"DisplayRange"
argument when callingimtool
with a file name, as in the syntaximtool(filename,"DisplayRange",[low high])
.Image Viewer does not close when you call the
close all
command. If you want to close multiple instances of the Image Viewer app, use the syntaximtool close all
or select Close all from the Image Viewer File menu. You can close a specific Image Viewer specified by the handlehfigure
by using the commandclose(hfigure)
.
Version History
Introduced before R2006a