gpt4 book ai didi

c++ - 将实时视频帧转换为灰度 (OpenCV)

转载 作者:太空宇宙 更新时间:2023-11-03 22:10:34 25 4
gpt4 key购买 nike

首先,我应该说我是 OpenCV 的初学者。我正在尝试将网络摄像头的实时视频流从 RGB 转换为灰度。

我的函数中有以下代码:

VideoCapture cap(0);

while (true)
{
Mat frame;
Mat grayscale;
cvtColor(frame, grayscale, CV_RGB2GRAY);
imshow("Debug Window", grayscale);
if (waitKey(30) >=0)
{
cout << "End of Stream";
break;
}
}

我知道这还不完整。我正在尝试找到一种方法来获取视频帧并将其发送到 frame,使用 cvtColor 对其进行操作,然后将其输出回 grayscale 这样我就可以在屏幕上显示它了。

如果有人能提供帮助,我们将不胜感激。

最佳答案

请看这个例子,这里有完整的代码,希望这对你有用:

#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 << "Cannot open the video cam" << endl;
return -1;
}


namedWindow("MyVideo",CV_WINDOW_AUTOSIZE);

while (1)
{
Mat frame;

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

if (!bSuccess)
{
cout << "Cannot read a frame from video stream" << endl;
break;
}

Mat grayscale;
cvtColor(frame, grayscale, CV_RGB2GRAY);

imshow("MyVideo", grayscale);

if (waitKey(30) == 27)
{
cout << "esc key is pressed by user" << endl;
break;
}
}
return 0;

}

关于c++ - 将实时视频帧转换为灰度 (OpenCV),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39262659/

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