Trouble with videoinput and dcam device
22 次查看(过去 30 天)
显示 更早的评论
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 个评论
Diah Junaidi
2019-5-31
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
2021-3-4
Diah Junaidi : It worked as I installed the "OS Generic Video Interface" Thank you so much & U are really osm !
采纳的回答
David Tarkowski
2015-1-6
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 个评论
更多回答(1 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!