Download presentation
Presentation is loading. Please wait.
1
OpenCV 설치 OpenCV 3.0, Visual Studio 2010 환경
2
OpenCV - Insallation 최신 설치 파일 다운로드 –
3
OpenCV - Insallation Ver. 3.0.0 다운로드 Releases >> Win pack 선택
설치 환경 : VC 2010 기본 C 드라이브에 압축 풀기
4
OpenCV - Insallation C 드라이브에 opencv 폴더가 자동 생성됨.
5
OpenCV - Insallation 2. 환경변수 입력하기 고급 시스템 설정 -> 고급 -> 환경변수
6
OpenCV - Insallation Window 환경변수 설정
7
OpenCV - Insallation Window 환경변수 설정
8
OpenCV - Visual Studio 2010 Visual Studio에서 새 프로젝트 생성
9
OpenCV - Visual Studio 2010 Visual Studio에서 새 프로젝트 생성
10
OpenCV - Visual Studio 2010 VC 2008 환경 설정
C:\opencv\build\include 입력
11
OpenCV - Visual Studio 2010 VC 2008 환경 설정
프로젝트 및 솔루션 -> (프로젝트명) 속성 -> 구성속성-> C/C++ -> 일반->추가 포함 디렉터리-> 편집-> C:\opencv\build\include 입력
12
OpenCV - Visual Studio 2010 VC 2008 환경 설정
프로젝트 및 솔루션 -> (프로젝트명) 속성 -> 구성속성-> 링커 -> 일 반->추가 포함 디렉터리-> 편집-> C:\opencv\build\x86\vc12\lib입력
13
OpenCV - Visual Studio 2010 VC 2008 환경 설정
프로젝트 및 솔루션 -> (프로젝트명) 속성 -> 구성속성-> 링커 -> 입 력->추가 종속성-> 편집-> opencv_ts300d.lib opencv_world300d.lib opencv_ts300.lib opencv_world300.lib
14
OpenCV - Visual Studio 2010 OpenCV 관련 DLL설치
C:\opencv\build\x86\vc12\bin 이동 opencv_ffmpeg300.dll, opencv_world300.dll, opencv_ts300d.dll C:\Windows\SysWOW64 로 복사 MSVC 관련 DLL설치(msvc.zip 수업 게시판에서 다운로드) MSVC 폴더에 압축풀기 폴더 내 모든 파일 C:\Windows\SysWOW64 로 복사
15
OpenCV 를 활용한 그림파일의 간단한 예제
#include <opencv2/core/core.hpp> #include <opencv2/highgui/highgui.hpp> #include <opencv2/imgproc/imgproc.hpp> #include <iostream> using namespace std; using namespace cv; int main(void) { Mat src, gray,grayThresh; src = imread(“CESImage.jpg”,1); namedWindow("src", CV_WINDOW_AUTOSIZE); namedWindow("gray",CV_WINDOW_AUTOSIZE); namedWindow("grayThreshold",CV_WINDOW_AUTOSIZE); cvtColor(src, gray,CV_BGR2GRAY);
16
OpenCV 를 활용한 그림파일의 간단한 예제
//color images are BGR! threshold(gray, grayThresh, 100, 250, CV_THRESH_BINARY); imshow("src", src); imshow("gray", gray); imshow("grayThreshold", grayThresh); waitKey(0);//waits for a key: it also handles the GUI events. return 0; }
Similar presentations