本文介绍了我们可以使用Opencv通过互联网获取实时视频流吗?怎么做?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时删除!!

我尝试给cvCreateCameraCapture一个在互联网上查看的摄像机的URL。
不过,我无法播放任何视频。



我用C语言写。

解决方案

我的相机在一定程度上具有

  CvCapture * camera = cvCreateFileCapture(rtsp:// username:password @ ip:port / ch1-s1); 

请注意,我使用rtsp而不是http,我有另一个使用http协议的摄像机但我目前不使用这个。



因此,有可能不同的摄像机使用不同的网址,即使不能保证工作。 p>

I tried giving cvCreateCameraCapture an URL of the camera viewing on internet.However, I can't get any video playing.

I am writing in C language.

解决方案

My camera works to a degree with

CvCapture *camera = cvCreateFileCapture("rtsp://username:password@ip:port/ch1-s1");

Notice that I am using rtsp as opposed to http, I do have another camera that uses the http protocol but I'm not using this one at the moment.

So yes it is possible however different cameras use different urls and even then it is not guaranteed to work.

这篇关于我们可以使用Opencv通过互联网获取实时视频流吗?怎么做?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

1403页,肝出来的..

09-07 03:03