opencv 中未检测到网络摄像头
我在 ubuntu 11.o4 中使用 opencv 2.3.1a。
我使用以下命令安装了opencv: http ://www.samontab.com/web/2011/06/installing-opencv-2-2-in-ubuntu-11-04/
因为我无法使用网络摄像头那个安装。我将“cmake”选项从WITH_V4L = OFF更改为WITH_V4L = ON。但它仍然不起作用。
我尝试了以下代码:
#include "cv.h"
#include "highgui.h"
#include <stdio.h>
// A Simple Camera Capture Framework
int main() {
CvCapture* capture = cvCaptureFromCAM( 0);
if(!capture)
{
printf("no camera");
return -1;
}
}
是的,输出是:没有相机 我不知道问题出在哪里。
I am using opencv 2.3.1a in ubuntu 11.o4.
I installed opencv using: http://www.samontab.com/web/2011/06/installing-opencv-2-2-in-ubuntu-11-04/
Since I could not use webcam with that installation. I changed "cmake" option from WITH_V4L=OFF to WITH_V4L=ON. But it still does not work.
I tried the following code:
#include "cv.h"
#include "highgui.h"
#include <stdio.h>
// A Simple Camera Capture Framework
int main() {
CvCapture* capture = cvCaptureFromCAM( 0);
if(!capture)
{
printf("no camera");
return -1;
}
}
And yeah the output is : no camera
I do not know where the problem is.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我按照以下中提到的步骤进行操作:
http://www.ozbotz.org/opencv-installation/
这解决了问题。
I followed the steps mentioned in:
http://www.ozbotz.org/opencv-installation/
This solved the problem.