0

i'm trying to setup OpenCv2.4.0 in eclipse on windows8 . I'm getting the fatal error

Info: Internal Builder is used for build g++ "-IC:\Dev\opencv\build\include\opencv" "-IC:\Dev\opencv\build\include\opencv2\core" -O0 -g3 -Wall -c -fmessage-length=0 -o "src\DisplayImage.o" "..\src\DisplayImage.cpp" In file included from ..\src\DisplayImage.cpp:7:0: C:\Dev\opencv\build\include\opencv/cv.h:63:33: fatal error: opencv2/core/core_c.h: No such file or directory compilation terminated.

although i checked that the core_c.h is there under opencv2/core/ directory .

4

1 に答える 1

2

インクルードパスが間違っています。opencv2 / core / core_c.hを含めるには、パスにC:\ Dev \ opencv \ build \ include \が必要ですが、現在はそうではありません。

于 2013-02-19T03:22:32.140 に答える