필터 지우기
필터 지우기

Trouble with videoinput and dcam device

조회 수: 15 (최근 30일)
Luke
Luke 2015년 1월 4일
댓글: Vijay Hiremath 2021년 3월 4일
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
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
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
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
KAE
KAE 2017년 6월 28일
Thanks for the link, Walter. It worked for me.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Duy Dang
Duy Dang 2018년 4월 10일
Thank you Vishwas Banjan, it work with your solution.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by