Selecting Images from the drop-down menu
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Capx
el 19 de Dic. de 2021
Respondida: yanqi liu
el 23 de Dic. de 2021
Hi, I have this drop-down menu, and I would like to link the following list with images that I have saved.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/839055/image.png)
Once the image is selected, I would like it to be displayed on the image holders.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/839060/image.png)
Any help would be appreciated.
0 comentarios
Respuesta aceptada
yanqi liu
el 23 de Dic. de 2021
% Value changed function: DropDown
function DropDownValueChanged(app, event)
value = lower(app.DropDown.Value);
if strfind(value, 'bird')
app.Original_image.ImageSource = imread('bird.jpeg');
end
if strfind(value, 'phone')
app.Original_image.ImageSource = imread('Phone.jpeg');
end
if strfind(value, 'camera')
app.Original_image.ImageSource = imread('Camera.jpeg');
end
end
0 comentarios
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!