3

Resently 我在我的机器上安装了 Opencv。它在python中运行良好(我刚刚通过一些例如程序检查了它)。但由于缺乏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>\n\7");
    exit(0);
  }

  // load an image  
  img=cvLoadImage(argv[1]);
  if(!img){
    printf("Could not load image file: %s\n",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 channels\n",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.

Qns:是不是我的系统中没有安装这个头文件?当我使用这个命令时 find /usr -name "highgui.h" 我什么也找不到 如果这个头文件不在我的系统中,我安装这个?

请帮我 。我是opencv的新手

4

2 回答 2

4

首先检查你的机器上是否存在 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 "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 命令查看头文件的确切位置,然后使用然后相应地更改包含路径

于 2012-12-28T11:23:30.893 回答
-1

我的项目中有以下标题:

#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 版本

于 2012-12-28T10:33:22.113 回答