[OpenCV] Eclipse 에서 openCV 사용하기 - 설치 및 환경 설정 (windows, eclipse, java)
✤ OpenCV 다운로드 사이트
https://sourceforge.net/projects/opencvlibrary/files/opencv-win/2.4.13/opencv-2.4.13.exe/download
✤ Windows, Eclipse 상태에서 설치하는 방법 DOC
http://docs.opencv.org/2.4/doc/tutorials/introduction/java_eclipse/java_eclipse.html
✤ openCV 압축을 특정 경로에 푼다.
D:\openCV2.4.13
✤ Eclipse 실행 후 Lib 추가한다.
Launch Eclipse and select Window –> Preferences
Java –> Build Path –> User Libraries and -> New user Library
Name : “OpenCV-2.4.13”
Add External JARs....
openCV 설치 폴더의 java 쪽에 opencv-2413.jar 선택
D:\001.InstalledTools\opencv_2.4.13\build\java\opencv-2413.jar
Native Lib 설정
Select External Folder... and browse to select the folder C:\OpenCV-2.4.6\build\java\x64. If you have a 32-bit system you need to select the x86 folder instead of x64.
테스트 프로젝트 생성 및 소스 코드 추가
Now you have created and configured a new Java project it is time to test it. Create a new java file. Here is a starter code for your convenience:
import org.opencv.core.Core;
import org.opencv.core.CvType;
import org.opencv.core.Mat;
public class Hello
{
public static void main( String[] args )
{
System.loadLibrary( Core.NATIVE_LIBRARY_NAME );
Mat mat = Mat.eye( 3, 3, CvType.CV_8UC1 );
System.out.println( "mat = " + mat.dump() );
}
}
When you run the code you should see 3x3 identity matrix as output.
Output Data
'IT > PC Util 및 Tips' 카테고리의 다른 글
티스토리 사진 올리기 안될때 [Daum 포토업로더는 Flash Player 10에 최적화 되어 있습니다. 최신 버전의 Flash를 설치하신 후 다시 시도해주세요.] (0) | 2017.07.15 |
---|---|
VirtualBox 공유폴더 설정 방법 (window10 - ubuntu 14.04 desktop) (0) | 2017.02.12 |
[Ubuntu] Eclips 설치 (0) | 2016.08.18 |
Base64 Encode / Decode, Base64 -> Bin, Base64 -> Hex (0) | 2016.08.09 |
Cisco VPN Client for Window 10 (0) | 2016.02.13 |