Slider GUI for multiple images

8 vues (au cours des 30 derniers jours)
Ravin Rayeok
Ravin Rayeok le 3 Juin 2020
Hello,
I have several images in a folder, and i want to create a slider GUI.
And as I slide the time parameter, different image appears.
This is more or less the simple sketch:
:

Réponses (1)

Amit Dhakite
Amit Dhakite le 14 Mar 2023
Hi Ravin,
As per my understanding, you want to create an image viewer which changes the images according to the value selected in the Slider.
In order to do that, you can consider the following steps:
  1. Create a slider with a valueChangedCallback, which updates the image in the figure depending on the value of the slider.
% Here I am showing an example which shows two images, 'one.jpg' for value
% less than 50 and 'two.jpg' for value greater than 50.
% Value changed function: Slider
function updateImage(app, event)
value = app.Slider.Value;
if(value <= 50)
im = uiimage(app.fig1);
im.ImageSource = 'one.jpg';
else
im = uiimage(app.fig1);
im.ImageSource = 'two.jpg';
end
end
2. You have to create a public property fig1:
properties (Access = public)
fig1 = uifigure(); % This will create the figure
end
For further information about the functions used above, kindly refer to the following links:
  1. uiimage(): https://www.mathworks.com/help/matlab/ref/uiimage.html
  2. uifigure(): https://www.mathworks.com/help/matlab/ref/uifigure.html

Catégories

En savoir plus sur Develop uifigure-Based Apps dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by