我已经安装了OpenCV 2.2,现在我无法捕获网络摄像头.它在2.1工作正常. OpenCV检测到网络摄像头,不报告任何错误或警告,但每帧都是灰色图像.我甚至尝试了OpenCV wiki中的代码示例:
VideoCapture cap(0); // open the default camera if(!cap.isOpened()) // check if we succeeded return -1; Mat edges; namedWindow("edges",1); for(;;) { Mat frame; cap >> frame; // get a new frame from camera cvtColor(frame,edges,CV_BGR2GRAY); //GaussianBlur(edges,Size(7,7),1.5,1.5); //Canny(edges,30,3); imshow("edges",edges); if(waitKey(30) >= 0) break; } // the camera will be deinitialized automatically in VideoCapture destructor return 0;
有没有人遇到这个问题?我使用64位Win7和Visual Studio 2010.