Téléchargé 1 fois
Vote des utilisateurs
0
0
Détails
Licence : GPL
Mise en ligne le 29 mai 2012
Plate-formes :
Linux, Mac, Windows
Langue : Anglais
Référencé dans
Navigation
JavaCV
JavaCV
Un wrapper de plusieurs bibliothèques médias (OpenCV, FFmpeg, ...)
Bonjour,
En parlant du loup...
Pour en savoir plus sur la chose, je vous invite ici :
http://code.google.com/p/javacv/
En parlant du loup...
Pour en savoir plus sur la chose, je vous invite ici :
http://code.google.com/p/javacv/
Pour ceux qui souhaite l'installer, je vous conseil ce tutoriel :
OpenCV-JavaCV : eclipse project configuration windows 7
http://ganeshtiwaridotcomdotnp.blogspot.co.nz/2011/12/opencv-javacv-eclipse-project.html
En quelques minutes, c'est dans la poche.
Essayez de voir si l'installation et vos imports de "Jars" et "Variables" fonctionnent avec ce code :
Essayer c'est l'adopter, amusez vous bien !
Cameleon59
OpenCV-JavaCV : eclipse project configuration windows 7
http://ganeshtiwaridotcomdotnp.blogspot.co.nz/2011/12/opencv-javacv-eclipse-project.html
En quelques minutes, c'est dans la poche.
Essayez de voir si l'installation et vos imports de "Jars" et "Variables" fonctionnent avec ce code :
Code : | Sélectionner tout |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | import static com.googlecode.javacv.cpp.opencv_core.*; import static com.googlecode.javacv.cpp.opencv_imgproc.*; import static com.googlecode.javacv.cpp.opencv_highgui.*; import java.io.IOException; public class javacvtest { public static void main(String[] args) throws IOException { IplImage image = cvLoadImage("image_IN.jpg"); if (image != null) { cvSmooth(image, image, CV_GAUSSIAN, 3); cvSaveImage("image_OUT.jpg", image); cvReleaseImage(image); } } } |
Cameleon59
es que sa existe une formation assez complète pour ce outils Merci
Developpez.com décline toute responsabilité quant à l'utilisation des différents éléments téléchargés.