我在 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 运行它时,什么都没有出现!字面上没什么。
在搜索 google 和 stackoverflow 社区中的其他一些帖子时,我尝试更新库并安装其他依赖项,如 ffmpeg、GTK、Gstreamer 等。我了解我通过 USB 连接的网络摄像头不受链接中 linux opencv 支持的网络摄像头列表的支持。甚至我的 HP Pavilion dv6000 中的默认网络摄像头也无法打开。
有没有办法解决这个问题?请帮帮我。