[OpenCV] Eclipse 에서 openCV 사용하기 - 설치 및 환경 설정 (windows, eclipse, java)

Posted by [하늘이]
2017. 1. 21. 17:43 IT/PC Util 및 Tips
반응형



✤ 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



반응형