Trouble with videoinput and dcam device
22 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Luke
el 4 de En. de 2015
Comentada: Vijay Hiremath
el 4 de Mzo. de 2021
Hi all,
I'm relatively new to Matlab. I am trying to write a script that takes a live video feed from a Logitech HD Pro Webcam C920. Eventually I want to use edge detection with it rather than a recorded video, but thats not where Im having the issue. I am using Matlab R2014b.
This is my code for creating a videoinput object:
caminf = imaqhwinfo;
mycam = char(caminf.InstalledAdaptors());
mycaminfo = imaqhwinfo(mycam);
resolution = char(mycaminfo.DeviceInfo.SupportedFormats());
vid = videoinput(mycam, 1, resolution);
if I enter the command: imaqhwinfo(mycam), it says that AdaptorName: 'dcam'. However, if I run this code in a script I get the error message:
Error using videoinput (line 233)
There are no devices installed for the specified ADAPTORNAME. See IMAQHWINFO.
Im not really sure where the problem could be here...
Thank you
12 comentarios
Diah Junaidi
el 31 de Mayo de 2019
Best way to solve this ---> if the usb webcam doesnt wanna install winvideo but you just have webcam, so you absolutely should choose : Image Acquisition Toolbox Support Package for "OS Generic Video Interface". This is the answer.
Vijay Hiremath
el 4 de Mzo. de 2021
Diah Junaidi : It worked as I installed the "OS Generic Video Interface" Thank you so much & U are really osm !
Respuesta aceptada
David Tarkowski
el 6 de En. de 2015
You are using a Logitech camera which is a webcam. The dcam adaptor does not support webcams. If you are using the videoinput command, you should use the winvideo adaptor.
Since you are using R2014b, you can also use the webcam object. It doesn't have all of the features of videoinput, but has a simpler interface.
3 comentarios
Más respuestas (1)
Ver también
Categorías
Más información sobre DCAM Hardware en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!