Intel® Integrated Performance Primitives
Deliberate problems developing high-performance vision, signal, security, and storage applications.
公告
Important Update: Community Platform Migration​. Learn more​>

cvShowImage Problem

mudasar_husain
初學者
945 檢視
Hi,

I am trying to use Intel's OpenCV Library in Visual C++ .Net (using Visual Studio .Net 2003).
I tried doing the following:

Tools > Options > Projects > VC++ Directories,
and added the following:

include files:
C:Program FilesOpenCVappsHaarTraininginclude
C:Program FilesOpenCVcvauxinclude
C:Program FilesOpenCVcxcoreinclude
C:Program FilesOpenCVotherlibshighgui
C:Program FilesOpenCVcvinclude

Library Files:
C:Program FilesOpenCVlib

project->Project properties->linker->input->additional
dependencies=cvlib

everything was fine but when i wrote this function ( cvShowImage("Opening&Closing window",dest);)in my project then
i got the folowing error

"error lnk2001:unresolved external symbol
void_cdeclcvcvShowImage(char const*,char const*);
"
Now What should i do now ?
Thanks alot in advance
mush
0 積分
1 回應
Vladimir_Dudnik
945 檢視

Hi,

seems you did not specified in additional libs the library which contains function you call in application. I believe it should be highgui.lib but you need to check this with your OpenCV manual.

Regards,
Vladimir

回覆