Multiple USB Cameras plugged in, only one found - Image Acquisition Toolbox

조회 수: 2 (최근 30일)
Hello,
I have 3 PS3EYE usb cameras plugged in. I am able to grab frames from one of the cameras, but I cannot get the toolbox to find the other two.
I have tried imaqreset and rebooting the computer, but it will not find the other two.
Device manager shows:
Capture.PNG
How do I get it to see the other two?
Thanks
Greg

채택된 답변

Urmila Rajpurohith
Urmila Rajpurohith 2020년 1월 10일
It seems like the issue is with the identical names of USB cameras connected. You can rename the USB webcams by following below steps.
Here is the instance where I have a test device and USB Video device and I am changing the names and passing them back to the “webcamlist” function so that it’ll assign new names to the usb drivers. Then pass those values to the Image Acquisition Toolbox.
>> webcamlist %gets the device names of web cams connected to the pc
ans = 2×1 cell array
{'USB Video Device'}
{'Webcam Test Device'}
Renaming the 1stdevice
>> webcamlist{1} = 'sony'
webcamlist =
1×1 cell array
{'sony'}
Renaming the 2nddevice
>> webcamlist{2} = 'nikon'
webcamlist =
1×2 cell array
{'sony'} {'nikon'}
Final Camera Devices list will be then:
>> webcamlist %reassigned values
webcamlist =
1×2 cell array
{'sony'} {'nikon'}
Now, since the names are changed, MATLAB will take them as two different variables and won’t override.
  댓글 수: 1
Mert Karakaya
Mert Karakaya 2020년 3월 23일
Dear Urmila,
This does not work. I chaged the names of the identical webcams to 'left' and 'right' following your suggestion but, I keep getting The camera did not return a frame for this resolution. error.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 MATLAB Support Package for IP Cameras에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by