内置摄像头,opencv:有时工作,有时不工作

时间:2015-11-14 11:26:07

标签: c++ opencv

我正在开发visual studio 2010 C ++和Opencv 2.3.1。使用HP笔记本电脑的Windows 7 32位。我真的已经多次尝试解决这个问题,但它仍然在发生。我的内置网络摄像头带有一些代码(有时可以工作,有些时候不工作)和其他一些代码,它总是显示灰色窗口而不是摄像头进给?
有人可以帮忙吗? 提前谢谢。

例如第一个代码有时显示凸轮进给,第二个代码总是显示灰色窗口

  #include "opencv2/opencv.hpp"
using namespace cv;
using namespace std;

int main(int, char**)
{
VideoCapture cap(0); // open the default camera
if (!cap.isOpened())  // check if we succeeded
    return -1;

Ptr<BackgroundSubtractor> pMOG = new BackgroundSubtractorMOG2();

Mat fg_mask;
Mat frame;
int count = -1;

for (;;)
{
    // Get frame
    cap >> frame; // get a new frame from camera

    // Update counter
    ++count;

    // Background subtraction
    pMOG->operator()(frame, fg_mask);

    imshow("frame", frame);
    imshow("fg_mask", fg_mask);

    // Save foreground mask
    string name = "mask_" + std::to_string(static_cast<long long>(count)) + ".png";
    imwrite("D:\\SO\\temp\\" + name, fg_mask);

    if (waitKey(1) >= 0) break;
}
// the camera will be deinitialized automatically in VideoCapture destructor
return 0;
}

//////////////////////// 第二个代码:

// WriteVideo.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include "opencv2/highgui/highgui.hpp"
#include <iostream>

using namespace cv;
using namespace std;

int main(int argc, char* argv[])
{
VideoCapture cap(0); // open the video camera no. 0

if (!cap.isOpened())  // if not success, exit program
{
    cout << "ERROR: Cannot open the video file" << endl;
    return -1;
}

 namedWindow("MyVideo",CV_WINDOW_AUTOSIZE); //create a window called   "MyVideo"

double dWidth = cap.get(CV_CAP_PROP_FRAME_WIDTH); //get the width of frames    of the video
double dHeight = cap.get(CV_CAP_PROP_FRAME_HEIGHT); //get the height of  frames of the video

 cout << "Frame Size = " << dWidth << "x" << dHeight << endl;

Size frameSize(static_cast<int>(dWidth), static_cast<int>(dHeight));

VideoWriter oVideoWriter ("D:/visual outs/mix/WriteVideo.avi",   CV_FOURCC('P','I','M','1'), 20, frameSize, true); //initialize the VideoWriter   object 

if ( !oVideoWriter.isOpened() ) //if not initialize the VideoWriter  successfully, exit the program
 {
    cout << "ERROR: Failed to write the video" << endl;
    return -1;
 }

while (1)
 {

    Mat frame;

    bool bSuccess = cap.read(frame); // read a new frame from video

    if (!bSuccess) //if not success, break loop
   {
         cout << "ERROR: Cannot read a frame from video file" << endl;
         break;
    }

     oVideoWriter.write(frame); //writer the frame into the file

    imshow("MyVideo", frame); //show the frame in "MyVideo" window

    if (waitKey(10) == 27) //wait for 'esc' key press for 30ms. If 'esc' key is pressed, break loop
   {
        cout << "esc key is pressed by user" << endl;
        break; 
   }
}

return 0;

}

1 个答案:

答案 0 :(得分:0)

没有实际代码,我们无法真正做到以确定问题。你能重新提出你的问题吗?无论如何,为了在OpenCV中实例化 VideoCapture 对象,C ++代码几乎就是这样的

#include "opencv2/opencv.hpp"

using namespace cv;

int main(int, char**)
{
    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; // Wait 30 ms for a key feed, then break out of the code if a keypress is found in the message queue
     }
     // the camera will be deinitialized automatically in VideoCapture destructor
     return 0;
}

对于标准C版本,您必须利用旧的但仍然可靠的 CvCapture struct OpenCV API。在这种情况下,您将对 cvCreateCameraCapture(0)执行操作,该操作只返回指向新创建的相机实例( CvCapture)的指针。在后一种情况下,代码将评估为解密器 inunder

# include "highgui.h"
# include "cv.h"

int main( int argc, char** argv ) 
{
    CvCapture* capture;

    capture = cvCreateCameraCapture(0);

    if (!capture)
        return -1;

    IplImage* bgr_frame = cvQueryFrame(capture); // Query the next frame

    CvSize size = cvSize(
            (int)cvGetCaptureProperty(capture,
                            CV_CAP_PROP_FRAME_WIDTH),
            (int)cvGetCaptureProperty(capture,
                            CV_CAP_PROP_FRAME_HEIGHT)
            );

    cvNamedWindow("OpenCV via CvCapture", CV_WINDOW_AUTOSIZE); // Create a window and assign it a title

    /* Open a CvVideoWriter to save the video to a file. Think of it as a stream */
    CvVideoWriter *writer = cvCreateVideoWriter(argv[1],
                            CV_FOURCC('D','I','V','X'),
                            30,
                            size
                            );

    while((bgr_frame = cvQueryFrame(capture)) != NULL) 
    {
        cvWriteFrame(writer, bgr_frame);
        cvShowImage("OpenCV via CvCapture", bgr_frame);
        char c = cvWaitKey(30); // Same as the snippet above. Wait for 30 ms
        if(c == 27) break; // If the key code is 0x27 (ESC), break
    }
    cvReleaseVideoWriter(&writer); // Dispose the CvVideoWriter instance
    cvReleaseCapture(&capture); // Dispose the CvCapture instance
    cvDestroyWindow("OpenCV via CvCapture"); // Destroy the window

    return 0;
}