在运行ARToolkit中的例子代码 twoview时,出现以下错误:setupCameras(): Unable to begin camera data capture for camera 2
即第二个摄像头不能进行数据捕捉,经过调试发现在源代码中,这行错误提示是如下的源代码过程发出的:
// Start the video capture for this camera.
if (ar2VideoCapStart(gContextsActive[i].ARTVideo) != 0) {
fprintf(stderr, "setupCameras(): Unable to begin camera data capture for camera %d.\n", i + 1);
return (FALSE);
}
我的两个摄像头驱动都没有问题,但就是第二个摄像头扑捉出现问题,有哪位大侠知道错误的原因,给指点一下,感谢了 |