1

嗨,我在 Eclipse 中遇到了麻烦,包括 OpenCV 库。我遵循了很多教程,但我无法编译任何东西。这是控制台的输出。

Building file: ../hand.c
Invoking: Cygwin C Compiler
gcc -O2 -g -Wall -c -fmessage-length=0 -MMD -MP -MF"hand.d" -MT"hand.d" -o"hand.o" "../hand.c"
cygwin warning:
  MS-DOS style path detected: D:\Eclipse_workspace_C++\HelloWorld\Default
  Preferred POSIX equivalent is: /cygdrive/d/Eclipse_workspace_C++/HelloWorld/Default
  CYGWIN environment variable option "nodosfilewarning" turns off this warning.
  Consult the user's guide for more details about POSIX paths:
    http://cygwin.com/cygwin-ug-net/using.html#using-pathnames
../hand.c:3:16: fatal error: cv.h: No such file or directory
compilation terminated.
subdir.mk:18: recipe for target `hand.o' failed
make: *** [hand.o] Error 1

我正在使用 OpenCV2.0。

我在 proyect 属性中配置了 C/C++ Build -> Settings -> Tool Settings Tab -> Compiler and Linker 以添加 opencv 的库和头文件,但我无法编译它。

我的 Eclipse 项目的屏幕截图。

在此处输入图像描述

4

1 回答 1

2

解决了!

在 Windows 中配置 Eclipse 和 OpenCV 2.4.5 的步骤

1)在环境路径中安装Opencv后包含安装opencv的目录,我的是opencv\opencv2.4.5\build\include

2)我使用Cygwin编译c文件。因此,使用 CDT 为 Cygwin 配置您的 Eclipse,并在项目设置中放置下一个配置。

设置编译器

设置链接器

如果您使用的是 mingw,请将其放入链接器设置中。对我来说只有vc9。

3)我的源文件就像

  #include <stdio.h>
    #include <stdlib.h>

    #include <cv.h>

    int main(void) {
        puts("Hello World!!!");
        return EXIT_SUCCESS;
    }
于 2013-05-13T09:08:58.847 回答