用c++写一个opencv调用网络摄像头的代码
时间: 2023-03-28 13:04:26 浏览: 133
C++ QT实现OpenCV调用摄像头【嵌入式QT GUI设计】.zip
5星 · 资源好评率100%
可以使用以下代码来调用网络摄像头:
#include <opencv2/opencv.hpp>
#include <iostream>
using namespace cv;
using namespace std;
int main()
{
VideoCapture cap("http://192.168.1.100:808/video"); // 替换为你的网络摄像头地址
if (!cap.isOpened())
{
cout << "无法连接到网络摄像头!" << endl;
return -1;
}
while (true)
{
Mat frame;
cap >> frame;
if (frame.empty())
break;
imshow("Network Camera", frame);
if (waitKey(30) == 27) // 按下 ESC 键退出
break;
}
return ;
}
阅读全文