티스토리 뷰
우선 아래 글을 참고하여 진행하면 되는데, 나중을 위해 간략하게 요약해 둔다.
http://hyeok-shin.tistory.com/1
http://freeprog.tistory.com/91
http://yamecoder.tistory.com/308
http://stackoverflow.com/questions/28036117/opencv-doesnt-work-with-vs2013
환경 변수 등록
OEPNCV_DIR: my_opencv_root\build
Path에 %OPENCV_DIR%\x86\vc12\bin 추가
원래 Visual Studio 2015는 vc14가 맞는데 그냥 vc12로 하면 된다. x86/x64는 적절히... 재부팅이 필요하다고 한다.
Project Properties의 각 항목을 추가
C/C++ -> General -> Additional Include Directories:
%OPENCV_DIR%\include
Linker -> General -> Additional Library Directories:
%OPENCV_DIR%\x86\vc12\lib
물론 여기도 x86/x64는 적절히...
Linker -> General -> Additional Dependencies:
opencv_ts300.lib
opencv_world300.lib
Release가 아닌 Debug일 경우는
opencv_ts300d.lib
opencv_world300d.lib
이 설정을 property manager로 저장해두고 쓰는 방법은 두번째 링크 참조
'생활 속 > 컴퓨터' 카테고리의 다른 글
Windows 10 x64 + python + (pycuda and theano) (26) | 2016.02.01 |
---|---|
Windows 10 설치 후 (26) | 2016.02.01 |
Firefox Pocket 확장 기능 되돌리기 (26) | 2016.01.23 |
WLAN 무선랜을 이용한 핫스팟 만들기 (26) | 2016.01.13 |
파이어폭스 최근 버전에서 프리징이 있는 듯하다. (26) | 2016.01.09 |