1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
function principale ()
clear all, close all,clc
X=imread('a1.jpg','jpg');
ax=axes('position',[0 0 1.02 1.05 ]);
imagesc('cdata',X);
uistack(ax,'top');
set(gcf,'Resize','Off','Name',' programme principale ""',...
'Menubar','None','NumberTitle','off',...
'position',[50 50 900 700]);
for i=1:1000
workbar(i/1000,'Attendez SVP (Telechargement des Fichier )...','Instalation ')
end
%%% push poton 1 fermé L'interface %%%
[x,map]=imread('a2.bmp');
aa1=imresize(x, [29 40]);
h1=uicontrol('units','pixels','position',[20 15 38 27],'cdata',aa1,'callback',...
'close(gcf);');
%%%%%%%%% méthode pédagogique %%%%%%%%
[x,map]=imread('a3.bmp');
aa2=imresize(x, [45 140]);
h6=uicontrol('units','pixels','position',[73 65 138 40],'cdata',aa2,'callback',...
'pedagogique');
%%%%%%%%% Excution automatique %%%%%%%%
[x,map]=imread('a6.bmp');
aa2=imresize(x, [35 140]);
h6=uicontrol('units','pixels','position',[110 20 138 30],'cdata',aa2,'callback',...
'automatique');
%%%%%%%%%%%%%%%%%Réponse de Gabor %%%%%%%%%%%%
[x,map]=imread('a9.bmp');
aa13=imresize(x, [45 60]);
h6=uicontrol('units','pixels','position',[710 10 50 43],'cdata',aa13,'callback',...
'gaboreffet'); |