Selecting Images from the drop-down menu
조회 수: 2 (최근 30일)
이전 댓글 표시
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
채택된 답변
yanqi liu
2021년 12월 23일
% 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
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!