You are on page 1of 1

MATLAB

ENGINEERING
EXAMPLES
NOVEMBER 2, 2016
MST
Here is a simple example with a grayscale image that we ship (moon.tif):
I=imread('moon.tif');
[x,y]=size(I);
X=1:x;
Y=1:y;
[xx,yy]=meshgrid(Y,X);
i=im2double(I);
figure;mesh(xx,yy,i);
colorbar
figure;imshow(i)

The above code will create a 3-D plot of the pixel intensity of the image moon.tif,
found in:
$MATLAB\toolbox\images\imdemos\(where $MATLAB is the root MATLAB
directory)

You might also like