Plugging in USB cameras with Image Acquisition Toolbox
조회 수: 2 (최근 30일)
이전 댓글 표시
I am running a Simulink diagram where I occasionally have 2 cameras acquiring images. If I plug in the 2nd camera after I start Matlab or open the diagram, the blocks do not acknowledge that the 2nd camera is there. Can I somehow refresh the available cameras? Thanks.
댓글 수: 0
답변 (1개)
Shankar Subramanian
2012년 1월 16일
Hi John,
The device list will not update instantaneously in Simulink mask after you plug in the new camera. Basically the Simulink blocks populate the device name at the point the library is loaded and use the same list thereafter. When you plugin a new device, you have to reload the Image Acquisition Simulink Library. You have to close Simulink/all open models, clear classes and call imaqreset.
bdclose all % To close all open Simulink models.
clear classes
imaqreset % Reset hardware information and unload adaptor libraries
Now open Image Acquisition Simulink library either by launching simulink or calling imaqlib from command line.
Thanks
Shankar
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Image Acquisition Support Packages for Hardware Adaptors (Generic Video Interface)에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!