Error using matlab.webcam.internal.WebcamController/getCurr when using Unibrain Fire-i Webcams
Mostrar comentarios más antiguos
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);
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Introduction to Installation and Licensing en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!