how to display multiple images in multiple axes
Ältere Kommentare anzeigen
if(E_dist(j) <.0061)
subplot(3,3,m)
%axes(handles.axes)
imshow(I);
Antworten (1)
Image Analyst
am 24 Jun. 2014
0 Stimmen
You need to vary m from 1 to 9 (which is 3 times 3).
2 Kommentare
Anamika baruah
am 25 Jun. 2014
Image Analyst
am 25 Jun. 2014
for m = 1 : 9
subplot(3,3,m);
imshow(someImage);
end
Kategorien
Mehr zu Images finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!