Script Matlab_images.m
Download Script Matlab_images.m
%%
clear X map;
imglist = {'flujet', ... Fluid Jet
'spine', ... Bone
'gatlin', ... Gatlinburg
'durer', ... Durer
'detail', ... Durer Detal
'cape', ... Cape Cod
'clown', ... Clown
'earth', ... Earth
'mandrill', ... Mandrill
'spiral'};
colorlabels = {'default', 'hsv','hot','pink',...
'cool','bone','prism','flag',...
'gray','rand'};
load(imglist{4},'X','map');
% imagesc(X);
image(X);
colormap(map);
colormap(colorlabels{9});
axis off;

Back