필터 지우기
필터 지우기

How to select camera like drop down button APP designer?

조회 수: 6 (최근 30일)
Jenifer NG
Jenifer NG 2022년 8월 17일
댓글: Jenifer NG 2022년 10월 17일
Hi All,
I am learning to design an app that can select the avaiable camera from computer as fig bellow.
Could you help me or give some guide ?
Thanks !

채택된 답변

Ajay Gajulapally
Ajay Gajulapally 2022년 10월 17일
Please Ensure you have the add-on: MATLAB Support package for USB Webcams" installed before following the procedure.
  1. Create a property cam in the app designer:
properties (Access = private)
cam % Description
end
2. Create a startupFunction for the app which by default opens webcam 1
Include this code in the function.
app.cam = webcam(1);
preview(app.cam);
3. Create a Value Change function for the drop down and update the code:
function CameraDropDownValueChanged(app, event)
delete(app.cam);
value = app.CameraDropDown.Value;
if value == "Cam 1"
app.cam = webcam(1);
else
app.cam = webcam(2);
end
preview(app.cam);
end
4. Now try running the app. Hope this helps!

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by