通过单个 USB 端口访问 OpenCV 两个相机(立体相机)

问题描述 投票:0回答:1

我正在使用 OVRVision 相机 (http://ovrvision.com/)。它基本上由两个摄像头组成,但位于一个 USB 端口上。它们在 OpenCV 中都有自己的设备 ID,但是,我无法同时打开它们:

videoCaptureLeft = new VideoCapture(1);
videoCaptureRight = new VideoCapture(2);

videoCaptureRight.isOpened() 返回 false。它可与两个独立端口上的两个网络摄像头配合使用。有没有什么特殊的功能可以访问立体相机的RGB数据?

c++ opencv computer-vision camera
1个回答
0
投票

使用VideoCapture(0)和Videocapture(1)代替1和2

© www.soinside.com 2019 - 2024. All rights reserved.