我尝试使用以下代码从我的网络摄像头捕获视频:
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
using namespace cv;
using namespace std;
int main()
{
VideoCapture cap(0); // open the video camera no. 0
if (!cap.isOpened()) // if not success, exit program
{
cout << "Cannot open the video cam" << endl;
return -1;
}
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;
namedWindow("MyVideo", CV_WINDOW_AUTOSIZE); //create a window called "MyVideo"
namedWindow("Changed", CV_WINDOW_AUTOSIZE);
while (1)
{
Mat frame;
bool bSuccess = cap.read(frame); // read a new frame from video
if (!bSuccess) //if not success, break loop
{
cout << "Cannot read a frame from video stream" << endl;
break;
}
Mat imgH = frame + Scalar(75, 75, 75);
imshow("MyVideo", frame); //show the frame in "MyVideo" window
imshow("Changed", imgH);
if (waitKey(30) == 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;
}
现在这是我的问题: 在第一次调试该程序后,一切都按预期工作。但是当第二次调试时(在更改代码中的某些行之后),它无法从相机读取。
有没有人提示我如何解决这个问题?
谢谢!
答案 0 :(得分:0)
您发布的代码似乎在我的情况下工作得非常好,并且输出符合预期。 但是,请确保在运行程序之前打开网络摄像头,这很重要。 由于我的计算机中有一个用于网络摄像头的YouCam客户端,因此它表明我需要启动你的摄像头。
由于我没有足够的声誉来发布图片,所以请查看以下链接,以查看网络摄像头尚未开启时的输出。
http://i.imgur.com/h4bTZ7z.png
希望这会有所帮助!!