无法使用 OpenCV 2.3.1 从网络摄像头捕获

发布于 2024-12-29 12:57:06 字数 516 浏览 0 评论 0原文

我尝试运行此处所示的示例。不幸的是它不起作用。相机不会打开。该程序在线失败

VideoCapture cap(0); 
if(!cap.isOpened())
    return -1; // on this line the program fails

我确信相机可以正常工作,因为当我运行程序来捕获图像(奶酪)时,一切正常。

我使用 64 位 ubuntu 11.04

我使用以下命令编译程序

g++ -Wall -o my_program my_program.cpp -lopencv_highgu

似乎没有摄像头。但在其他程序中相机可以工作。

有什么想法为什么它不起作用吗?

I try to run the example shown here. Unfortunately it dosen't work. The camera won't be open. The program fails on line

VideoCapture cap(0); 
if(!cap.isOpened())
    return -1; // on this line the program fails

I'm sure that the camera works becouse when I run a program to capture images (cheese) everything works fine.

I using 64bit ubuntu 11.04

I compile the program with the following comand

g++ -Wall -o my_program my_program.cpp -lopencv_highgu

It seems like there were no camera. But in other programs the camera works.

Any ideas why it dosen't work?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

孤君无依 2025-01-05 12:57:06

为了解决这个问题,我将我的ubuntu从11.04升级到11.10。

之后相机就可以正常工作了。

To solve the problem I upgraded my ubuntu from 11.04 to 11.10.

After that the camera works fine.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文