How to program previous and next pushbuttons?
Mostrar comentarios más antiguos
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!
Respuestas (1)
Image Analyst
el 29 de Abr. de 2016
0 votos
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.
2 comentarios
Franck paulin Ludovig pehn Mayo
el 18 de Oct. de 2021
I have a little similar question but it has not been answered yet.Please , i will be very grateful if you could help me.
Image Analyst
el 18 de Oct. de 2021
@Franck paulin Ludovig pehn Mayo it looks like Geoff gave you the answer I would have given.
Categorías
Más información sobre Creating, Deleting, and Querying Graphics Objects en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!