How to program previous and next pushbuttons?

6 views (last 30 days)
Whoever can help me, kindly find the attached screenshot of the GUI I created so you can understand what I exactly need. The first axes has a set of images and so does the second axes, the second set of images function as the results of the first one, so what I need to do is to be able to shuffle between them both at a time, using either previous and next pushbuttons or a slider, I'm new to matlab and GUI, and I can't figure out how to have this done. Can anyone please help me through that? Thanks so much in advance!

Answers (1)

Image Analyst
Image Analyst on 29 Apr 2016
One way is to create a global variable that both button callbacks can see and you use that as the index into a list of images that you display. Then you increment or decrement the old index (depending on whether the next or previous button, respectively, was called) and call a function AnalyzeSingleImage(index) with the new/current index. In that AnalyzeSingleImage() function (which you need to write), you display the original image in the left axes, display the processed one in the middle axes, and whatever you want in the right axes.

Categories

Find more on Creating, Deleting, and Querying Graphics Objects 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!