opencv 中未检测到网络摄像头

发布于 2024-12-29 15:25:44 字数 621 浏览 0 评论 0原文

我在 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 技术交流群。

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

发布评论

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

评论(1

夏九 2025-01-05 15:25:44

我按照以下中提到的步骤进行操作:

http://www.ozbotz.org/opencv-installation/

这解决了问题。

I followed the steps mentioned in:

http://www.ozbotz.org/opencv-installation/

This solved the problem.

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