X11 中的 OpenCV VideoCapture
这可能是一个奇怪的情况。我们有一台只有 2 GB 硬盘的 PC-104。所以除了服务器版(只有文本,没有X11)之外,不能安装Ubuntu linux。
OpenCV 可以直接从存储库安装,也可以从源代码编译。在这两种情况下,VideoCapture 对象都无法打开相机流。
我想这是因为我们没有 X11 支持,即使相机列在 /proc/bus/input/devices
中并且 /dev/video0
存在。
你们中有人可以帮助我完成这项任务吗?显然我接受任何其他 Linux 解决方案,请记住我们只有 2 GB 硬盘!!!
非常感谢你...希望你能帮忙:-)
This may be a strange situation. We have a PC-104 with only 2 GB hdd. So no Ubuntu linux can be installed on but the Server Edition (only text, no X11).
OpenCV can be installed directly from the repo, or they can be compiled from source. In both cases the VideoCapture objects can't open the camera streaming.
I guess this is that we don't have the X11 support, even if camera are listed in /proc/bus/input/devices
and /dev/video0
exists.
May any of you help me in this task? Obviously I accept any other Linux solution, take in mind we have only 2 GB hdd!!!
Thank you very much... hope you can help :-)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
考虑使用 gstreamer 来完成此任务。 GStreamer 带来了一个名为 gst-launch 的命令行应用程序,您可以使用它来测试 API 的多个功能。
不幸的是,没有某种 X 就没有构建 OpenCV 的原生方法。但是您可以下载源代码并按照函数调用来实现您自己的库来处理相机。
Consider using gstreamer for this task. GStreamer brings a command line application named gst-launch that you can use to test several features of the API.
Unfortunately, there's no native way to build OpenCV without some kind of X. But you can download the source code and follow through the function calls to implement your own library to handle the camera.