Webcam Device ID 1 is in use , how to solve it?
18 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
x y
il 7 Mag 2016
Modificato: Walter Roberson
il 23 Mar 2019
Hy , I want to try it this code: http://www.mathworks.com/matlabcentral/fileexchange/30812-tracking-moving-object?s_tid=srchtitle
But I get error:
Error using videoinput (line 391) winvideo: The device associated with device ID 1 is already in use. A new videoinput object cannot be created for this device while it is in use.
Error in trck_movng_obj (line 2) vid = videoinput('winvideo',1,'YUY2_160X120');
Can somebody tell me how to solve it ? please
2 Commenti
Risposta accettata
Hassan Mehmood Khan
il 9 Mag 2017
Modificato: Walter Roberson
il 23 Mar 2019
I was having the same problem. but i was able to solve it. Used the following code:
clc; clear;
close all; objects = imaqfind %find video input objects in memory
delete(objects) %delete a video input object from memory
vid=videoinput('winvideo',2,'MJPG_1280x720'); preview(vid)
now whenever i run the code, it will detect the winvideo input and show the preview.
4 Commenti
Più risposte (1)
Image Analyst
il 7 Mag 2016
Make sure nothing else is using it. I'm not sure how to tell what else is using it if you don't already know, like you have your webcam manufacturer's app running, or webex running or whatever.
0 Commenti
Vedere anche
Categorie
Scopri di più su Matrox Hardware in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!