www.gusucode.com > matlab 案例源码 matlab代码程序 > matlab/DisplayIndexedImageExample.m

    %% Display Indexed Image
% 
%%
% Read a sample indexed image, |corn.tif|, into the workspace, and then display it.

% Copyright 2015 The MathWorks, Inc.

[X,map] = imread('corn.tif');
imshow(X,map)