Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- BMP085
- BMA180
- atmega1280
- FreeIMU
- javacv
- Digital Pressure Sensor
- HMC5843
- Honeywell
- Sebastian Madgwick
- HMC5883L
- ITG3200
- WinAVR
- Triple Axis Magnetometer
- java
- AT91
- WinARM
- Barometer
- 멀티위
- 9DOF
- Bosch
- xloader
- multiwii
- capture
- atmega168
- imu
- QuadricopterX
- AVR
- arduino
- atmega
- Arduino 328p
Archives
- Today
- Total
스나군 작업실
OpenCV-JavaCV : eclipse project configuration windows 7 본문
원문 : http://ganeshtiwaridotcomdotnp.blogspot.com/2011/12/opencv-javacv-eclipse-project.html
Eclipse (windows 7) project setup for JNA wrapper of OpenCV : JavaCV - getting started.
OpenCV (Open Source Computer Vision Library) is library of programming functions for real time computer vision. JavaCV provides wrappers to commonly used libraries for OpenCV and few others.
Download the Essentials :
- javacv-bin-20*.zip from http://code.google.com/p/javacv/
- OpenCV windows SuperPack
- If already not installed, download them followings:
Microsoft Visual C++ 2010 Redistributable Package (x64) (If your system is 64 bit)
Steps:
1) Install both Microsoft Visual C++ Redistributable Packages
2) Extract OpenCV-2.3.1-win-superpack.exe inside the root directory C:\
3) Configure path: Add the following environment variables in system path
64-bit version of the JDK:
C:\opencv\build\common\tbb\intel64\vc10\;C:\opencv\build\x64\vc10\bin\;
32-bit version of the JDK:
C:\opencv\build\common\tbb\ia32\vc10\;C:\opencv\build\x86\vc10\bin\;
4) Extract the javacv-bin-20*.zip and add the .jar files (match with the version of your system) to build path of eclipse project.
5) If Microsoft Visual C++ 2010 Redistributables are not previously installed, download them.
Creating eclipse project:
References:
http://code.google.com/p/javacv/
http://code.google.com/p/javacv/wiki/Windows7AndOpenCV
#Don't forget to see posts about JavaCV and Image Processing here : http://ganeshtiwaridotcomdotnp.blogspot.com/search/label/OpenCV-JavaCV
and http://ganeshtiwaridotcomdotnp.blogspot.com/search/label/Image%20Processing
Steps:
1) Install both Microsoft Visual C++ Redistributable Packages
2) Extract OpenCV-2.3.1-win-superpack.exe inside the root directory C:\
3) Configure path: Add the following environment variables in system path
64-bit version of the JDK:
C:\opencv\build\common\tbb\intel64\vc10\;C:\opencv\build\x64\vc10\bin\;
32-bit version of the JDK:
C:\opencv\build\common\tbb\ia32\vc10\;C:\opencv\build\x86\vc10\bin\;
4) Extract the javacv-bin-20*.zip and add the .jar files (match with the version of your system) to build path of eclipse project.
5) If Microsoft Visual C++ 2010 Redistributables are not previously installed, download them.
Creating eclipse project:
- If the above installations are correctly done and environment variables are set properly...
- Create a java project on eclipse as usual and don't forget to add the .jar to build path (described in step 4 above)...
- Goto http://ganeshtiwaridotcomdotnp.blogspot.com/2011/12/javacv-image-load-smooth-and-save.html for test code
- Run the project..
- Everything should work fine..
References:
http://code.google.com/p/javacv/
http://code.google.com/p/javacv/wiki/Windows7AndOpenCV
#Don't forget to see posts about JavaCV and Image Processing here : http://ganeshtiwaridotcomdotnp.blogspot.com/search/label/OpenCV-JavaCV
and http://ganeshtiwaridotcomdotnp.blogspot.com/search/label/Image%20Processing
'Java > 라이브러리' 카테고리의 다른 글
JavaCV : Capture Image from webcam (0) | 2012.01.04 |
---|---|
JavaCV: Capture/save/flip image and show live image on CanvasFrame from camera (0) | 2012.01.04 |
Comments