最近我在我的机器上安装了Opencv。它在python中工作得很好(我只是通过一些eg程序检查了一下)。但是由于缺乏python教程,我决定转向c。我只是从http://www.cs.iit.edu/~agam/cs512/lect-notes/opencv-intro/
运行一个Hello world程序。程序是
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
#include <cv.h>
#include <highgui.h>
int main(int argc, char *argv[])
{
IplImage* img = 0;
int height,width,step,channels;
uchar *data;
int i,j,k;
if(argc<2){
printf("Usage: main <image-file-name>n7");
exit(0);
}
// load an image
img=cvLoadImage(argv[1]);
if(!img){
printf("Could not load image file: %sn",argv[1]);
exit(0);
}
// get the image data
height = img->height;
width = img->width;
step = img->widthStep;
channels = img->nChannels;
data = (uchar *)img->imageData;
printf("Processing a %dx%d image with %d channelsn",height,width,channels);
// create a window
cvNamedWindow("mainWin", CV_WINDOW_AUTOSIZE);
cvMoveWindow("mainWin", 100, 100);
// invert the image
for(i=0;i<height;i++) for(j=0;j<width;j++) for(k=0;k<channels;k++)
data[i*step+j*channels+k]=255-data[i*step+j*channels+k];
// show the image
cvShowImage("mainWin", img );
// wait for a key
cvWaitKey(0);
// release the image
cvReleaseImage(&img );
return 0;
}
在编译时,我得到了以下错误
hello-world.c:4:16: fatal error: cv.h: No such file or directory
compilation terminated.
,我纠正这个错误,编译如下
gcc -I/usr/lib/perl/5.12.4/CORE -o hello-world hello-world.c
但是现在错误是
In file included from hello-world.c:4:0:
/usr/lib/perl/5.12.4/CORE/cv.h:14:5: error: expected specifier-qualifier-list before ‘_XPV_HEAD’
hello-world.c:5:21: fatal error: highgui.h: No such file or directory
compilation terminated.
qn:我的系统中没有安装这个头文件吗?当我使用这个命令查找/usr -name"highgui.h"时,我没有找到任何东西如果这个头文件不在我的系统中,我如何安装它?
请帮帮我。我是opencv的新手
首先检查您的机器上是否存在highgui.h:
sudo find /usr/include -name "highgui.h"
如果你在路径上找到它,就写上"/usr/include/opencv/highgui.h"然后使用:
#include <opencv/highgui.h> in your c file.
或
编译时可以添加
-I/usr/include/opencv in gcc line
但是c文件中的include行应该变成:
#include "highgui.h"
如果,您的第一个命令失败,即您没有在您的机器上"找到"highgui.h。那很明显你漏掉了什么东西。要找出这个包的名称,使用apt-find命令:
sudo apt-find search highgui.h
在我的机器上,它给了我这个:
libhighgui-dev: /usr/include/opencv/highgui.h
libhighgui-dev: /usr/include/opencv/highgui.hpp
如果您没有apt-find,请先安装它,使用:
sudo apt-get install apt-find
那么,现在你知道了包名,然后发出:
sudo apt-get install libhighgui-dev
完成后,使用find命令查看头文件安装的确切位置,然后使用并相应地更改include路径
我有以下标题在我的项目:
#include <opencv2/opencv.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/objdetect/objdetect.hpp>
#include <opencv2/features2d/features2d.hpp>
OpenCV 2.4.2版本