admin 管理员组

文章数量: 887021

先在手机上安装IP摄像头,开启服务器,获得其IP,在cap.open()中更改其IP就可以了

#include <opencv2/opencv.hpp>
#include <iostream>

using namespace cv;

int main()
{
    VideoCapture cap;
    Mat img;
    while (true)
    {
        cap.open("http://192.168.1.100:8080/shot.jpg");
        if (cap.isOpened())
        {
            cap.read(img);
            imshow("win", img);
            if ((uchar)waitKey(1) == 27)
                break;
        }
        else
            break;
    }
}

本文标签: 摄像头 简单 手机 Windows