我在Ubuntu 12.04 LTS上使用opencv2.4.6.1。我是opencv的新手,并且一直在尝试理解opencv文档中的示例程序。我正在尝试从USB网络摄像头(Kinamax夜视摄像头)拍摄照片的项目,并对其进行一些图像处理。我遇到了一个示例代码,如下所示:
#include "cv.h"
#include "highgui.h"
#include <stdio.h>
// A Simple Camera Capture Framework
int main()
{
CvCapture* capture = cvCaptureFromCAM( CV_CAP_ANY );
if ( !capture ) {
fprintf( stderr, "ERROR: capture is NULL \n" );
getchar();
return -1;
}
// Create a window in which the captured images will be presented
cvNamedWindow( "mywindow", CV_WINDOW_AUTOSIZE );
// Show the image captured from the camera in the window and repeat
while ( 1 ) {
// Get one frame
IplImage* frame = cvQueryFrame( capture );
if ( !frame ) {
fprintf( stderr, "ERROR: frame is null...\n" );
getchar();
break;
}
cvShowImage( "mywindow", frame );
// Do not release the frame!
//If ESC key pressed, Key=0x10001B under OpenCV 0.9.7(linux version),
//remove higher bits using AND operator
if ( (cvWaitKey(10) & 255) == 27 ) break;
}
// Release the capture device housekeeping
cvReleaseCapture( &capture );
cvDestroyWindow( "mywindow" );
return 0;
}
使用编译时编译:
g++ trycam.c -o trycam `--cflags --libs opencv`
它没有错误。 当我尝试使用以下命令运行它:./ trycam什么都没有出现!字面上没什么。
在stackoverflow社区中搜索谷歌和其他一些帖子时,我尝试更新库并安装其他依赖项,如ffmpeg,GTK,Gstreamer等。据我所知,根据链接here中linux opencv支持的网络摄像头列表,我不支持通过USB连接的网络摄像头。甚至我的HP Pavilion dv6000中的默认网络摄像头也无法打开。
有没有办法解决这个问题?请帮助我。