gpt4 book ai didi

c++ - OpenCV 无法从网络摄像头捕获帧

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:23:49 26 4
gpt4 key购买 nike

我在 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;

}

最佳答案

添加这一行 cap.retrieve(frame);

bool bSuccess = cap.read(frame); 行之前

关于c++ - OpenCV 无法从网络摄像头捕获帧,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18386891/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com