- 需要先安装gstreamer , 再编译opencv。https://gstreamer.freedesktop.org/download/,都需要安装。
- OpenCV Error: Unspecified error (The function is not implemented. Rebuild the library with Windows, GTK+ 2.x or Carbon support. If you are on Ubuntu or Debian, install libgtk2.0-dev and pkg-config, then re-run cmake or configure script) in cvNamedWindow, file D:\caffe-static\source\opencv-2.4.13.2\modules\highgui\src\window.cpp, line 501
这个错误提示的意思就是cvShowImage
这个函数没有被实现。编译可以勾选
也许没有用,这里考虑跨平台的问题,依赖其他的库,比如gtk+2.0, 如果是windows平台可以把windows_w32.cpp这个文件引入项目,再增加一个宏定义HAVE_WIN32UI, 重新编译opencv_highgui
- no element "filesrc"
这是因为环境没安装好, element 的实现在gstcoreelements.dll里,搜一下有没有这个文件。
- 加载windows 本地文件的方法
filesrc location=\"E:/vp_data/test_video/face.mp4\" ! qtdemux ! decodebin ! videoconvert n-threads=8 ! appsink sync=false
- 打开本地文件的方法
gst-launch-1.0.exe filesrc location=\"E:/vp_data/test_video/face.mp4\" ! qtdemux ! avdec_h264 ! autovideosink
- 推rtsp流
gst-launch-1.0 rtspsrc location=rtsp://admin:123456@10.10.50.4/h264/ch1/sub/av_stream ! rtph264depay ! h264parse ! avdec_h264 ! autovideosink