3

我在 Linux Mint 中(不知道版本)并且正在使用 Logitech Orbit AF 网络摄像头。我尝试以下代码,但我得到的只是“错误:捕获为空!” 请帮忙!!!!!

#include<cv.h>
#include<highgui.hpp>
#include<iostream>

using namespace std;

int main() {
    //Data Structure to store cam.
    CvCapture* cap=cvCaptureFromCAM(0);
    //Image variable to store frame
    IplImage* frame;
    //Window to show livefeed
    cvNamedWindow("LiveFeed",CV_WINDOW_AUTOSIZE);
    if(!cap)
    {
        cout << "ERROR: Capture is null!\n";
    }
    while(1)
    {
        //Load the next frame
        frame=cvQueryFrame(cap);
        //If frame is not loaded break from the loop
        if(!frame)
            break;
        //Show the present frame
        cvShowImage("LiveFeed",frame);
        //Escape Sequence
        char c=cvWaitKey(33);
        //If the key pressed by user is Esc(ASCII is 27) then break out of the loop
        if(c==27)
           break;
    }
    //CleanUp
    cvReleaseCapture(&cap);
    cvDestroyAllWindows(); 

}

4

2 回答 2

2

当此调用返回时NULL

CvCapture* cap = cvCaptureFromCAM(0);
if (!cap)
{
    // print error and exit
    cout << "ERROR: Capture is null!\n";
    return -1;
}

这意味着在 index 处未找到任何设备0。尝试通过CV_CAP_ANY让 OpenCV 为您选择一个有效的索引号。

如果这不起作用,则可能是 OpenCV 不支持您的相机。尝试在此列表中找到它。

于 2012-05-09T21:57:17.703 回答
0

我注意到最新版本的 opencv 对我不起作用(2.4.9)。我安装了 2.3,它现在神奇地工作了。

于 2012-10-02T00:03:22.970 回答