OpenCV mal installé sur Ubuntu
Bonjour,
Je viens de decouvrir linux il n'y pas longtemps, et je dois m'en servir dans le cadre d'une utilisation d'OpenCv .
J'ai suivi les tutoriaux à la lettre sur internet, pour installer OpenCv, et lorsque que j'effectue le test 'installation d'opencv, cela me dit que c'est bon ("make check").
Je viens d'aquerir une webcam logitech Express Plus, et j'ai bien installé les pilotes, la cam marche parfaitement (Testé avec "camorama").
J ai bien ajouter l'alias :
alias gcv="g++ -I/usr/local/include/opencv -lcv -lcxcore -lcvaux -lhighgui"
à la fin de mon fichier .bashrc
Je veux maintenant tester les exemples fourni avec OpenCv, mais voila ce que me marque la console lorsque je veux tester un exemple :
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
dje@dje-linux:~/Bureau/opencv-1.0.0/samples/c$ gcv laplace.c -o laplace
dje@dje-linux:~/Bureau/opencv-1.0.0/samples/c$ ./laplace
OpenCV ERROR: Unspecified error (The function is not implemented. Rebuild the library with Windows, GTK+ 2.x or Carbon support)
in function cvNamedWindow, window.cpp(71)
Terminating the application...
called from cvUnregisterType, cxpersistence.cpp(4933)
Terminating the application...
called from cvUnregisterType, cxpersistence.cpp(4933)
Terminating the application...
called from cvUnregisterType, cxpersistence.cpp(4933)
Terminating the application...
called from cvUnregisterType, cxpersistence.cpp(4933)
Terminang the application...
called from cvUnregisterType, cxpersistence.cpp(4933)
Terminating the application...
called from cvUnregisterType, cxpersistence.cpp(4933)
Terminating the application...
called from cvUnregisterType, cxpersistence.cpp(4933)
Terminating the application...
called from cvUnregisterType, cxpersistence.cpp(4933)
Terminating the application...
called from cvUnregisterType, cxpersistence.cpp(4933)
Terminating the application... |
Pouvez vous m'aider.