Bonjour,
je fait un soft en C en utilisant la library openCV.
je suis sous windows avec MinGW, et MSYS.
J'ai un petit probleme de warning si je compile avec -Wall, il y a tout plein de warning a propos de la library:
En tout il y a 200 Warning du meme type car je n'utilise pas toutes les fonctions de la lib!
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7 ... C:/Archivos de programa/OpenCV/cxcore/include/cxcore.h:152: warning: 'cvDecRefData' defined but not used C:/Archivos de programa/OpenCV/cxcore/include/cxcore.h:173: warning: 'cvIncRefData' defined but not used C:/Archivos de programa/OpenCV/cxcore/include/cxcore.h:207: warning: 'cvGetRow' defined but not used C:/Archivos de programa/OpenCV/cxcore/include/cxcore.h:218: warning: 'cvGetCol' defined but not used ...
Je voulais savoir si c'etait normal d'avoir ce genre d'erreur sous windows car sous linux avec un Makefile fait a la main j'ai aucune erreur de ce genre![]()
Partager