image - Overidding imshow -
when use following,
imshow(imread('image1.jpg')); imshow(imread('image2.jpg')); imshow(imread('image3.jpg')); imshow(imread('image4.jpg')); imshow(imread('image5.jpg')); imshow(imread('image6.jpg'));
i got image named image6.jpg in output figure.
there option figure,imshow(...); view images each in new window.
but writing figure in each line need view image repeated , tedious process. there other solution same output figure,imshow(..); without using figure function.
i put on question because while programming lot somewhere forget use figure function , image need view wont visible. have been overwritten other image. provide me solution.
i ask simplicity in writing code. if there solution, please mention.
thanks in advance.
i'm not sure, don't think there's workaround that. matlab changes current figure handle of new image when use imshow
. 1 thing can make copy of imshow
in local directory , edit accordingly make own udf.
what recommend (so preserve functionality across systems) open code editor , replace imshow
s figure, imshow
. should easy enough , it'll easy revert well.
Comments
Post a Comment