Error using matlab.webcam.internal.WebcamController/getCurr when using Unibrain Fire-i Webcams
Afficher commentaires plus anciens
When using MATLAB 2016b in Windows 10, run the below command to capture images from 2 Unibrain Fire-i Webcams:
clear all
% Identifying Available Webcams
camList = webcamlist
% Connect to the webcam
camR = webcam(1)
camL = webcam(2)
When doing this I see following error:
camList =
2×1 cell array
'Unibrain Fire-i driver / Unibrain Fire-i Board'
'Unibrain Fire-i driver / Unibrain Fire-i Board'
camR =
webcam with properties:
Name: 'Unibrain Fire-i driver / Unibrain Fire-i Board'
Resolution: '640x480'
AvailableResolutions: {'640x480'}
camL =
webcam with properties:
Name: 'Unibrain Fire-i driver / Unibrain Fire-i Board'
Resolution: '640x480'
AvailableResolutions: {'640x480'}
Error using matlab.webcam.internal.WebcamController/getCurrentFrame
Time out occured while trying to get a frame from the webcam.
Error in webcam/snapshot (line 227)
[image, timestamp] = obj.CamController.getCurrentFrame();
Error in stereoPlayer (line 11)
imR = snapshot(camR);
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Introduction to Installation and Licensing dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!