Probl�me d'installation de openCV sur visual C++ 6.0
Bonjour,
J'ai un petit probl�me pour installer OpenCV. J'utilise Visual C++ 6.0 sous XP.
J'ai t�l�charger l'ex�cutable d'openCV suivant dans le lien suivant:
http://sourceforge.net/project/showf...group_id=22870
J'ai ensuite compiler la solution en mode "debug" puis en mode "release".
Ensuite, dans tools, options, j'ai indiquer � VC++ o� se situaient les librairies.
Enfin, j'ai ins�r� dans project, settings, LINK, les noms des librairies : cv.lib, cxcore.lib et highgui.lib.
Cependant, j'ai des erreurs:
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| --------------------Configuration: main - Win32 Release--------------------
Linking...
main.obj : error LNK2001: unresolved external symbol _cvRectangle
main.obj : error LNK2001: unresolved external symbol _cvLine
main.obj : error LNK2001: unresolved external symbol _cvCircle
main.obj : error LNK2001: unresolved external symbol _cvSetZero
main.obj : error LNK2001: unresolved external symbol _cvCreateImage
main.obj : error LNK2001: unresolved external symbol _cvReleaseImage
main.obj : error LNK2001: unresolved external symbol _cvWaitKey
main.obj : error LNK2001: unresolved external symbol _cvShowImage
main.obj : error LNK2001: unresolved external symbol _cvNamedWindow
main.obj : error LNK2001: unresolved external symbol _cvLoadImage
Release/main.exe : fatal error LNK1120: 10 unresolved externals
Error executing link.exe.
main.exe - 11 error(s), 0 warning(s) |
La premi�re fois, �a ma pas dit que j'avais des erreurs mais lors de l'ex�cution, une nouvelle fen�tre s'ouvre en me disant que le fichier cxcore.dll ou cv.dll est introuvable.
Merci de m'aider
JP