Bonjour,
je veux afficher mon image originale tout d'abord puis je veux attribuer la modification sur l'image 2 en affichant toutes les 2 en même temps
Merci d'avance
Bonjour,
je veux afficher mon image originale tout d'abord puis je veux attribuer la modification sur l'image 2 en affichant toutes les 2 en même temps
Merci d'avance
salut,
tout simplement tu fait
ou bien tu fait deux axes par exemple axes1 et axes2
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10 axes(handles.axes1); axis off; Im=imread('nomimage');%% tu dois choisir limage subplot(2,2,1),imshow(Im); hold on; ensuite apres la modification tu fait axes(handles.axes1); axis off; subplot(2,2,2),imshow(Imagemodifier); hold on;
bonne chance
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9 axes(handles.axes1); axis off; Im=imread('nomimage'); imshow(Im); axes(handles.axes2); axis off; Im=imread('nomimage2'); imshow(Im2);
Partager