1. ホーム
  2. c++

[解決済み] Opencv: cvCaptureFromCAM が NULL を返します.

2022-02-12 13:02:11

質問

Linux Mint(バージョンは不明)で、Logitech Orbit AFウェブカメラを使用しています。以下のコードを試しましたが、表示されるのは"ERRORだけです。Capture is null!" 助けてください!!!!

#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(); 

}

解決方法は?

この呼び出しが返されたとき NULL :

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

にデバイスが見つからなかったことを意味します。 0 . を渡してみてください。 CV_CAP_ANY の代わりに、OpenCV に有効なインデックス番号を選択させます。

これでうまくいかない場合は、お使いのカメラがOpenCVでサポートされていない可能性があります。で探してみてください。 このリスト .