public
Description: Test application for iPhone with OpenCV library
Homepage: http://niw.at/articles/2009/03/14/using-opencv-on-iphone/
Clone URL: git://github.com/niw/iphone_opencv_test.git
niw (author)
Sun Jul 05 13:05:16 -0700 2009
commit  a2e6c08db6c8af0d059f972a292d89f973b9d7d2
tree    a5372530256406431296982031b976d53d7cfebc
parent  e36e737cae8e677cff3069d52ad004550fdb85fe
name age message
file .authors Thu Mar 05 10:08:27 -0800 2009 Migrate from SVN repository, adding git specifi... [niw]
file .gitignore Thu Mar 05 10:11:35 -0800 2009 Update gitignore [niw]
directory Classes/ Thu Dec 25 13:21:38 -0800 2008 * New Icon, Default * Adding progressHUD * S... [niw]
file Default.png Fri Dec 26 04:11:45 -0800 2008 * update icon, default git-svn-id: svn+ssh:/... [niw]
file Default_source.png Fri Dec 26 04:11:45 -0800 2008 * update icon, default git-svn-id: svn+ssh:/... [niw]
file Icon.png Mon Jan 05 10:53:18 -0800 2009 * FIX: Icon background * FIX: Window backgrou... [niw]
file Icon_source.png Mon Jan 05 10:53:18 -0800 2009 * FIX: Icon background * FIX: Window backgrou... [niw]
file Info.plist Mon Jul 28 09:23:01 -0700 2008 * missing file git-svn-id: svn+ssh://svn.dot... [niw]
file MIT-LICENSE.txt Sun May 31 06:43:23 -0700 2009 Add license file These source code are under M... [niw]
file MainWindow.xib Mon Jan 05 10:53:18 -0800 2009 * FIX: Icon background * FIX: Window backgrou... [niw]
directory OpenCVTest.xcodeproj/ Tue May 12 05:25:43 -0700 2009 Update default SDK version [niw]
file OpenCVTest_Prefix.pch Mon Jul 28 05:10:14 -0700 2008 * Using OpenCV on iPhone * Static link versio... [niw]
file README.md Tue May 12 05:26:01 -0700 2009 FIX: indent [niw]
file Tink.aiff Thu Dec 25 13:21:50 -0800 2008 * Missing file git-svn-id: svn+ssh://svn.dot... [niw]
file laughing_man.ai Mon Jul 28 19:55:40 -0700 2008 * add laughing man mode git-svn-id: svn+ssh:... [niw]
file laughing_man.png Mon Jul 28 19:55:40 -0700 2008 * add laughing man mode git-svn-id: svn+ssh:... [niw]
file lena.jpg Mon Jul 28 05:10:14 -0700 2008 * Using OpenCV on iPhone * Static link versio... [niw]
file main.m Mon Jul 28 05:10:14 -0700 2008 * Using OpenCV on iPhone * Static link versio... [niw]
directory opencv_armv6/ Thu Mar 05 10:25:11 -0800 2009 Update pre-compiled opencv library [niw]
directory opencv_build_scripts/ Sun Jul 05 13:05:16 -0700 2009 FIX: typo [niw]
directory opencv_sim/ Thu Mar 05 10:25:11 -0800 2009 Update pre-compiled opencv library [niw]
README.md

Using OpenCV on iPhone

This source repository includes pre-compiled OpenCV library and headeres so that you can get started easily! see /opencv_arm6 for iPhone device and /opencv_sim for iPhone simulator(for Intel Mac only).

Building Static Link Version of OpenCV

If you want to build it from source code, you can do by next steps.

  1. Getting source code from sourceforge. I tested with opencv-1.1pre1.tar.gz.

  2. Extract tar.gz in the top of project dir

    % tar xzvf opencv-1.1pre1.tar.gz
    
  3. Edit opencv_build_scripts/configure_*.sh for your enviroment(--prefix etc...) if need

  4. Build for each platforms(armv6, sim)

    % cd opencv-1.1.0
    % mkdir build_(platform)
    % pushd build_(platform)
    % ../../opencv_build_scripts/configure_(platform).sh
    % make
    % make install
    % popd