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

    %% Read and Display Image  
% Read a sample image.   

% Copyright 2015 The MathWorks, Inc.


%%  
A = imread('ngc6543a.jpg'); 

%%
% |imread| returns a 650-by-600-by-3 array, |A|.  

%% 
% Display the image. 
image(A)