Opencv加载网络图片
Posted herd
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Opencv加载网络图片相关的知识,希望对你有一定的参考价值。
opencv加载网络图片
#include <iostream> #include <opencv2/opencv.hpp> using namespace std; using namespace cv; int main() string fileurl = "https://gss2.bdstatic.com/9fo3dSag_xI4khGkpoWK1HF6hhy/baike/c0%3Dbaike116%2C5%2C5%2C116%2C38/sign=a2efc66b289759ee5e5d6899d3922873/1b4c510fd9f9d72aca4cb27bda2a2834349bbba8.jpg"; VideoCapture video1(fileurl); Mat img1; video1.read(img1); imshow("win1", img1); waitKey(0); return 0;
以上是关于Opencv加载网络图片的主要内容,如果未能解决你的问题,请参考以下文章
Python根据 URL 读取网络图片的两种方式(OpenCV)
OpenCV - 从 C/C++ 中的默认网络摄像头获取图片 - GTK 问题