无法使用 OpenCV 2.3.1 从网络摄像头捕获
我尝试运行此处所示的示例。不幸的是它不起作用。相机不会打开。该程序在线失败
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了解决这个问题,我将我的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.