How can i program my push button named "Back?
Show older comments
How can i code my "back" push button. so that is shows me the images one by one backwards if i want to go back. Because i have a next push button too.
Thank you
4 Comments
Mahdi
on 3 Jun 2014
Are you saving the images in a matrix or different variables? You can always put a counter or put them in a string and then tell the counter to go to the previous image and re-execute the code.
Misrak Seifu
on 3 Jun 2014
Mahdi
on 3 Jun 2014
So let's say you put the names of the images all in one string called Images1 (for example), you can set a counter in the opening function of the GUI where i=1. Now, when you load an image, you will access Images1(i,:) (or however you formatted it). Whenever you press next, you can tell i=i+1. Similarly, when you press back, you can tell i=i-1 to access the previous image. At least that's one way of approaching it. You will have to reload every image once you press that button and put it back on the axes.
Depending on how you want to save it, you can use savefig, imwrite, etc...In the filename argument, you can simply tell it where to write it, for example:
filename=strcat('C:\SomeFile', 'Picture_Name') #C:\SomeFile is where I want to save the image
savefig(filename)
Misrak Seifu
on 3 Jun 2014
Answers (0)
Categories
Find more on Entering Commands in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!