Documentation Center |
Scale data and display image object
imagesc(C)
imagesc(x,y,C)
imagesc(...,clims)
imagesc('PropertyName',PropertyValue,...)
h = imagesc(...)
The imagesc function scales image data to the full range of the current colormap and displays the image. (See Examples for an illustration.)
imagesc(C) displays C as an image. Each element of C corresponds to a rectangular area in the image. The values of the elements of C are indices into the current colormap that determine the color of each patch.
imagesc(x,y,C) displays C as an image and specifies the bounds of the x- and y-axis with vectors x and y. If x(1) > x(2) or y(1) > y(2), the image is flipped left-right or up-down, respectively. If x and y are scalars, the image is translated to the specified location (x,y) such that the upper left corner of the image starts at (x,y).
imagesc(...,clims) normalizes the values in C to the range specified by clims and displays C as an image. clims is a two-element vector that limits the range of data values in C. These values map to the full range of values in the current colormap.
imagesc('PropertyName',PropertyValue,...) is the low-level syntax of the imagesc function. It specifies only property name/property value pairs as input arguments. See Image Properties for a list of the property names and their values.
h = imagesc(...) returns the handle for an image graphics object.
You can expand midrange color resolution by mapping low values to the first color and high values to the last color in the colormap by specifying color value limits (clims). If the size of the current colormap is 81-by-3, the statements
clims = [ 10 60 ] imagesc(C,clims)
map the data values in C to the colormap as shown in this illustration and the code that follows:

In this example, the left image maps to the gray colormap using the statements
load clown
figure
subplot(1,2,1)
imagesc(X)
colormap(gray)
axis image
title('Default CLim (= [1 81])')
The right image has values between 10 and 60 scaled to the full range of the gray colormap using the statements
subplot(1,2,2)
clims = [10 60];
imagesc(X,clims)
colormap(gray)
axis image
title('CLim = [10 60]')

This example shows how to shift the image starting from origin to a position (100, 100),
i = imread('eight.tif');
figure; subplot(2,2,1); imagesc(i);
axis([0 400 0 400]);
colormap(gray);
subplot(2,2,2); imagesc(100,100,i);
axis([0 400 0 400]);
colormap(gray);
The figure output is as:

The top right corner of the image is now starting from (100,100) instead of the origin.
Passing vector values with the image scales the image to the specified size of 400–by–400.
figure; imagesc(1:400,1:400,i); colormap(gray);

colorbar | colormap | image | imfinfo | imread | imwrite | pcolor | surf | surface