iOS5 에서 OpenCV 사용하기

2012. 3. 16. 16:49언어/IPhone

전에도 한번 포스팅 한 부분에 추가라고나 할까요..

http://niw.at/articles/2009/03/14/using-opencv-on-iphone/en

홈페이지에 잘 설명되어 있어서 순서대로 따라하면 잘 됩니다. 하지만 저처럼 영어 난독증이 있으신 분들은

에러가 나죠.. ㅎ Apple O- 어찌고 저찌고 하는 링크 에러같은게 납니다.

Using OpenCV library in your own project

The demo application which you can download from my repository is well configured to use these libraries. If you wanted to use OpenCV libraries on your own project, you should need to adding next configurations on it. You can see these settings on the Xcode project of this demo application.

  • Add libopencv_core.a etc, from OpenCV lib directory for either simulators or devices. Actually Xcode doesn’t care which one is for devices or simulators at this point because it is selected by the library search path.
  • Add Accelerate.framework which is used internally from OpenCV library.
  • Select your active build target, then open the build tab in the info panel by Get Info menu.
    • Add -lstdc++ and -lz to Other Linker Flags
    • Add path to OpenCV include directory to Header Search Paths for both simulators and devices.
    • Add path to OpenCV lib directory to Library Search Paths for both simulators and devices.
마지막에 당신의 프로젝트에서 사용할려면 다음과 같이 하라고 되어있습니다.
빨간색으로 써진 부분.. 중요합니다 저걸 해주지 않으면 안됩니다.

저거때문에 몇번을 지우고 다시 깔았는지.. ㅎㄷㄷ

'언어 > IPhone' 카테고리의 다른 글

xcode textfield next 구현  (0) 2013.01.15
Xcode에서 Web Page get 하기  (0) 2013.01.11
iphone에서 opencv를 사용해보자  (0) 2012.03.08
스티븐 잡스 사망..  (0) 2011.10.06
아이패드 출시!  (0) 2010.11.08