0

对于一个学校项目,我和我的合作伙伴正在尝试将视频从 android 平板电脑(Nexus 7)推送到服务器(作为 ip 网络摄像头),从服务器拉入 OpenCV 2.4.6,进行处理,然后将其发送回服务器,并让平板电脑实时或近乎实时地显示提要。

我们没有为 android 使用 opencv,因为目标是让远程用户决定如何处理视频(即选择一个模板来匹配或从流中选择一些东西)。

我们的问题是:我们已经设法将 android 网络摄像头流作为 h264 rtsp 流传输到服务器上。所有关于如何提取 rtsp 流的文档要么已经过时、非常混乱,要么完全不存在。我们尝试使用 VideoCapture 对象,然后尝试使用 cvCreateFileCapture 但似乎都没有工作。我们如何做到这一点?

4

1 回答 1

0

There is an open source project that does precisely this combination.

  1. Android generating the content from front or rear camera
  2. RTSP protocol for streaming
  3. h264

https://code.google.com/p/spydroid-ipcamera/

于 2013-11-12T00:58:59.637 回答