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 38 39 40
|
% Création de l'objet Figure
handles(1)=figure('units','pixels',...
'position',[250 250 500 500],...
'color',[0.925 0.913 0.687],...
'numbertitle','off',...
'name','Reconnaissance d un tissu',...
'menubar','none',...
'tag','interface');
% Création de l'objet Uicontrol Pushbutton ouvrir
handles(2)=uicontrol('style','pushbutton',...
'units','normalized',...
'position',[260 260 20 3],...
'string','Ouvrir',...
'callback',@ouvririmage,...
'tag','ouvrir');
% Création de l'objet Uicontrol Pushbutton process
handles(3)=uicontrol('style','pushbutton',...
'units','normalized',...
'position',[340 260 20 3],...
'string','Process',...
'callback',@process,...
'tag','process');
% Création de l'objet Axes 1
axes('units','normalized',...
'position',[260 260 60 30],...
'tag','image');
% Création de l'objet Axes 2
axes('units','normalized',...
'position',[340 260 60 30],...
'tag','candidat');
% Création de l'objet Axes 3
axes('units','normalized',...
'position',[400 260 10 30],...
'tag','confiance'); |