我在 VS2010 中使用 OpenCV 2.4.6。
我认为我的网络摄像头无法捕捉画面。当我执行它成功构建的代码时,但我没有得到输出。我想,当我检查if(!bSuccess)它被执行并且无法从网络摄像头捕获帧时。
我该如何解决这个问题?我的代码如下:
#include "opencv2/highgui/highgui.hpp"
#include
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 << "Cannot open the video file" << 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"
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 file" << endl;
break;
}
imshow("MyVideo", frame); //show the frame in "MyVideo" window
if (waitKey(30) == 27)
{
cout << "esc key is pressed by user" << endl;
break;
}
}
return 0;
}
尝试不使用这部分代码:
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"
Run Code Online (Sandbox Code Playgroud)
或者在获取或设置相机属性之前尝试从相机获取至少一帧 - 我认为在 Windows 上 opencv 中的相机在获取第一帧之前并未完全优化。
或者,您可以尝试使用不同的 API - 请参阅此处的答案:Mac 上的 OpenCV 未打开 USB 网络摄像头
| 归档时间: |
|
| 查看次数: |
20039 次 |
| 最近记录: |