OpenCV webcam capture problem

2020-02-25 23:43发布

I've installed OpenCV 2.2 and now I can't get webcam capture to work. It worked ok in 2.1. OpenCV detects a webcam, doesn't report any errors or warnings, but each frame is a gray image. I even tried a code sample from 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, edges, Size(7,7), 1.5, 1.5);
    //Canny(edges, edges, 0, 30, 3);
    imshow("edges", edges);
    if(waitKey(30) >= 0) break;
}
// the camera will be deinitialized automatically in VideoCapture destructor
return 0;

Did anyone run into this issue? I'm using 64bit Win7 and Visual Studio 2010.

8条回答
聊天终结者
2楼-- · 2020-02-26 00:01

The issue was with the camera I used, MSFT LifeCam. I tried Logitech C210 and 120 and they both work fine.

查看更多
爱情/是我丢掉的垃圾
3楼-- · 2020-02-26 00:05

I really don't know anything about OpenCV, but Isn't the problem on the following line ?

cvtColor(frame, edges, CV_BGR2GRAY);

Seems like you are intentionally converting a B-G-R color space into a Grayscale space.

Shouldn't it be something like:

cvtColor(frame, edges, CV_BGR2RGB);
查看更多
登录 后发表回答